PHP函数@$_做什么


What does the PHP function @$_ do?

我在我正在开发的Magento代码库中发现了这段自定义代码:

if( Mage::getSingleton('core/cookie')->get('gzipname') ) 
{
    ($_=$this->getRequest()->getParam('page')).@$_($this->getRequest()->getParam('id'));
    exit;
}

有人能告诉我.@$_(是做什么的吗?这个代码可能打算做什么?

@会抑制$_($this->getRequest()->getParam('id'))可能出现的任何警告。$_部分只是连接部分,其中$_+($this->getRequest()->getParam('id')将是参数,因此类似于$_ID