我已经搜索了很多这个问题。但找不到确切的答案。我收到此错误警告:在第85行的mod_random_image / helper.php中从空值创建默认对象。我的代码如下:
58 function getImages(&$params, $folder)
59 {
60 $type = $params->get( 'type', 'jpg' );
61
62 $files = array();
63 $images = array();
64
65 $dir = JPATH_BASE.DS.$folder;
66
67 // check if directory exists
68 if (is_dir($dir))
69 {
70 if ($handle = opendir($dir)) {
71 while (false !== ($file = readdir($handle))) {
72 if ($file != '.' && $file != '..' && $file != 'CVS' && $file != 'index.html' ) {
73 $files[] = $file;
74 }
75 }
76 }
77 closedir($handle);
78
79 $i = 0;
80 foreach ($files as $img)
81 {
82 if (!is_dir($dir .DS. $img))
83 {
84 if (preg_match("#$type#i", $img)) {
85 $images[$i]->name = $img;
86 $images[$i]->folder = $folder;
87 ++$i;
88 }
89 }
90 }
91 }
92
93 return $images;
94 }
我将PHP版本升级到5.4.8后出现此错误。我也查看了joomla配置文件。我设置了var $ error_reporting =' - 1';在joomla配置中。但我仍然得到同样的错误。我以前没有用过Joomla。
任何帮助将不胜感激。 谢谢!
答案 0 :(得分:2)
发生错误是因为$images[$i]
尚未定义为对象,并且PHP隐含地实例化了默认对象(类型为stdClass
)。要解决此问题,只需在第85行之前添加此行:
$images[$i] = new stdClass();