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

原创 wintop  2022-08-13 23:15:54  阅读 3324 次 评论 0 条
摘要:

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

通过排查:

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

$class = $param->getClass();

//更换为

$class = $param->getType();

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

通过排查:

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

$class = $param->getClass();

//更换为

$class = $param->getType();


问题解决。

本文地址:http://zuoweng.com/post/153.html
版权声明:本文为原创文章,版权归 wintop 所有,欢迎分享本文,转载请保留出处!

发表评论


表情

还没有留言,还不快点抢沙发?