thinkphp 5.0 在PHP8.0报错Method ReflectionParameter::getClass() is deprecated

今天用fastadmin 测试程序,在php8.0环境下报错 Method ReflectionParameter::geTCLass() is deprecated

通过排查:

修改 thinkphp 下的 \thinkPHP\library\think\APp.php 403 行

$class = $param->getClass();

//更换为

$class = $param->getType();


问题解决。

相关阅读

添加新评论