将源码中的thinkphp升级后,发现了错误:Declaration of think\app\Url::build() must be compatible with think\route\Url::build(): string
出现这个错误的原因是,你通过命令“composer update topthink/framework”只升级了框架,没有更新多应用扩展模块。
只需要composer运行下面代码更新多应用扩展模块到最新版后即可解决:
composer update topthink/think-multi-app
更新完成后,项目运行正常。
标签:Url,app,build,composer,thinkphp,think From: https://www.cnblogs.com/dengcao/p/18547684