PHP - warning - Undefined property: stdClass - fix?

后端 未结 9 1088
梦毁少年i
梦毁少年i 2020-11-30 05:22

I get this warning in my error logs and wanted to know how to correct this issues in my code.

Warning: PHP Notice: Undefined property: stdClass::$records in script

9条回答
  •  感动是毒
    2020-11-30 05:53

    If think this will work:

    if(sizeof($response->records)>0)
    $role_arr = getRole($response->records);
    

    newly defined proprties included too.

提交回复
热议问题