Notice: Undefined variable 的解决方法

这是PHP警告信息,是由于未定义变量引起的。

比如:你未设置变量,却在php中用echo $varstr 了,就会出显这种情况,

解决方法:

修改php.ini

将: error_reporting = E_ALL


修改为:error_reporting = E_ALL & ~E_NOTICE


如果什么错误都不想让显示,直接修改:




display_errors = Off


如果你没有php.ini的修改权限,可在php头部加入


ini_set("error_reporting","E_ALL & ~E_NOTICE");

即可

Last modified onSaturday, 05 January 2013 13:21

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0009412856{main}( ).../index.php:0
20.11814262968Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.11814262968Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.409511453936Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.410611478376Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.411811533704Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.412211561104require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.424511960736K2ControllerItem->execute( ).../k2.php:64
90.424511960736K2ControllerItem->display( ).../BaseController.php:710
100.438812611440K2ControllerItem->display( ).../item.php:78
110.438812611440K2ControllerItem->display( ).../controller.php:19
120.445312982480Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.447113002848K2ViewItem->display( ).../ViewController.php:102
140.537915801896K2ViewItem->display( ).../view.html.php:742
150.537915801896K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.540415974832include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
  • Published in 主机
  • Read 3777 times

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0009412856{main}( ).../index.php:0
20.11814262968Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.11814262968Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.409511453936Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.410611478376Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.411811533704Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.412211561104require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.424511960736K2ControllerItem->execute( ).../k2.php:64
90.424511960736K2ControllerItem->display( ).../BaseController.php:710
100.438812611440K2ControllerItem->display( ).../item.php:78
110.438812611440K2ControllerItem->display( ).../controller.php:19
120.445312982480Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.447113002848K2ViewItem->display( ).../ViewController.php:102
140.537915801896K2ViewItem->display( ).../view.html.php:742
150.537915801896K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.540415974832include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top