viewform.php
鉴于组件,我在 joomla 2.5 中有以下几行
$session = & JFactory::getSession();
if(empty($session->get('MasterIndex'))) $session->set('MasterIndex',0);
我得到
致命错误:无法在 /var/www/ 的写入上下文中使用方法返回值 ..
我也试过
if(empty($session->get('MasterIndex'))) $session->set('MasterIndex',0);
如何检查会话值是否已设置?