thinkphp
-
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();问题解决。...
-
thinkphp 5 json 输出数据
首先从数据库读数据,然后调用list_to_tree方法,再调用findchild方法,最后输出$category = DB::name('Category'); $category_list = $category->select(); $data...