Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP 更新后我收到警告
警告:从第 42 行 /modules/mod_feed/helper.php 中的空值创建默认对象
我之前遇到过这个问题,当时我使用过$v=new stdclass();. 但问题不在 Joomla 网站上。现在 joomla 网站也有同样的问题。我的代码链接在这里
$v=new stdclass();
我应该在这个文件中改变什么?有什么想法吗?
你还需要
$feed->image = new stdclass;
在第 42 行之前。这是一个E_STRICT级别警告。这些旨在提醒您代码气味(如自动创建数组/对象)。
E_STRICT