php警告Creating default object from empty value的解决办法
在php7+中警告Creating default object from empty value
源代码
$res = null; $res->domain = null; $res->host = null;
这是因为PHP7更严格,null并不是一个object因此报错,有两种方法
针对数组使用
$res = array(); $res->domain = array(); $res->host = array();
普通用法
$res = new stdClass(); $res->domain = new stdClass(); $res->host = new stdClass();
顶(0)
踩(2)
- 最新评论