PHP Fatal error: Call to a member function fetch_object() on boolean

后端 未结 2 470
孤独总比滥情好
孤独总比滥情好 2020-12-11 12:28

I got php fatal error after transfer server with php v5.6.19, before that I had no problem at all with following script

Fetch data from db table:

2条回答
  •  孤街浪徒
    2020-12-11 13:25

    Update your while loop for that case when you get false from $shop->get_department_list() call

    updated while like this check for $depts if any data then get $dept:

    while($depts && $dept = $depts->fetch_object()){
    

提交回复
热议问题