[0] ThrowableError in Index.php line 678

致命错误: Call to a member function toArray() on null

  1. $this->assign('count',$count);
  2. $this->assign('cases',db('cases')->where($wh)->order('id desc')->page($p,$limit)->select());
  3. return view();
  4. }
  5. //案例详情
  6. public function cases_details(){
  7. $id =input('id');
  8. model('cases')->where('id',$id)->setInc('page_view',1);
  9. $details = model('cases')->find($id);
  10. $details = $details->toArray();
  11. foreach ($details['slider'] as $key => $value) {
  12. $details['slider'][$key] = str_replace('\\','/',$details['slider'][$key]);
  13. }
  14. $this->assign('details',$details);
  15. $this->assign('path','http://'.$_SERVER['SERVER_NAME']. __ROOT__);
  16. return view();
  17. }
  18. //首页短视频
  19. public function video()

Call Stack

  1. in Index.php line 678
  2. at Index->cases_details()
  3. at ReflectionMethod->invokeArgs(object(Index), []) in Container.php line 395
  4. at Container->invokeReflectMethod(object(Index), object(ReflectionMethod), ['id' => '3', 'convert' => false]) in Module.php line 135
  5. at Module->think\route\dispatch\{closure}(object(Request), object(Closure), null)
  6. at call_user_func_array(object(Closure), [object(Request), object(Closure), null]) in Middleware.php line 185
  7. at Middleware->think\{closure}(object(Request))
  8. at call_user_func(object(Closure), object(Request)) in Middleware.php line 130
  9. at Middleware->dispatch(object(Request), 'controller') in Module.php line 140
  10. at Module->exec() in Dispatch.php line 168
  11. at Dispatch->run() in App.php line 432
  12. at App->think\{closure}(object(Request), object(Closure), null)
  13. at call_user_func_array(object(Closure), [object(Request), object(Closure), null]) in Middleware.php line 185
  14. at Middleware->think\{closure}(object(Request))
  15. at call_user_func(object(Closure), object(Request)) in Middleware.php line 130
  16. at Middleware->dispatch(object(Request)) in App.php line 435
  17. at App->run() in index.php line 24

Environment Variables

GET Data
id 3
POST Dataempty
Filesempty
Cookiesempty
Sessionempty
Server/Request Data
USER www
HOME /home/www
HTTP_HOST www.fagg.cn
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
PATH_INFO
REDIRECT_STATUS 200
SERVER_NAME www.fagg.cn
SERVER_PORT 80
SERVER_ADDR 172.16.199.103
REMOTE_PORT 45428
REMOTE_ADDR 18.232.185.167
SERVER_SOFTWARE nginx/1.20.1
GATEWAY_INTERFACE CGI/1.1
REQUEST_SCHEME http
SERVER_PROTOCOL HTTP/1.1
DOCUMENT_ROOT /www/wwwroot/fagg.cn
DOCUMENT_URI /index.php
REQUEST_URI /cases_details.html?id=3
SCRIPT_NAME /index.php
CONTENT_LENGTH
CONTENT_TYPE
REQUEST_METHOD GET
QUERY_STRING s=/cases_details.html&id=3
SCRIPT_FILENAME /www/wwwroot/fagg.cn/index.php
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711689926.3437
REQUEST_TIME 1711689926
Environment Variablesempty
ThinkPHP Constants
APP_PATH /www/wwwroot/fagg.cn/app/
THINK_VERSION 5.1.23
THINK_START_TIME 1711689926.3442
THINK_START_MEM 425128
EXT .php
DS /
THINK_PATH /www/wwwroot/fagg.cn/thinkphp/
LIB_PATH /www/wwwroot/fagg.cn/thinkphp/library/
CORE_PATH /www/wwwroot/fagg.cn/thinkphp/library/think/
TRAIT_PATH /www/wwwroot/fagg.cn/thinkphp/library/traits/
ROOT_PATH /www/wwwroot/fagg.cn/
EXTEND_PATH /www/wwwroot/fagg.cn/extend/
VENDOR_PATH /www/wwwroot/fagg.cn/vendor/
RUNTIME_PATH /www/wwwroot/fagg.cn/runtime/
LOG_PATH /www/wwwroot/fagg.cn/runtime/log/
CACHE_PATH /www/wwwroot/fagg.cn/runtime/cache/
TEMP_PATH /www/wwwroot/fagg.cn/runtime/temp/
CONF_PATH /www/wwwroot/fagg.cn/app/
CONF_EXT .php
ENV_PREFIX PHP_
IS_CGI 1
IS_CLI false
IS_WIN false
_PHP_FILE_ /index.php
__ROOT__