当前位置:Gxlcms > PHP教程 > Fatalerror:Cannotdeclareself-referencingconstant""该怎么解决

Fatalerror:Cannotdeclareself-referencingconstant""该怎么解决

时间:2021-07-01 10:21:17 帮助过:10人阅读

Fatal error: Cannot declare self-referencing constant ""
本帖最后由 ayayad 于 2013-11-25 10:19:51 编辑

Fatal error: Cannot declare self-referencing constant ""
这是yii框架的一个报错
报错文件:framework\db\CDbCommand.php
报错内容:

public function prepare()
{
if($this->_statement==null)
{
try
{
$this->_statement=$this->getConnection()->getPdoInstance()->prepare($this->getText());/**************就是这行报错******************/
$this->_paramLog=array();
}
catch(Exception $e)
{
Yii::log('Error in preparing SQL: '.$this->getText(),CLogger::LEVEL_ERROR,'system.db.CDbCommand');
$errorInfo = $e instanceof PDOException ? $e->errorInfo : null;
throw new CDbException(Yii::t('yii','CDbCommand failed to prepare the SQL statement: {error}',
array('{error}'=>$e->getMessage())),(int)$e->getCode(),$errorInfo);
}
}
}


情况描述:一般不会出现这个报错,就是不知道怎么网站运行一段时间(大概3-4天)后就报这错,只有重启apache后才会恢复,但一段时间后仍会出现。

求指教,谢谢!

------解决方案--------------------
不是yii的原生错误,我不知道
不过在网上只搜到你的这个与 yii 的相关问题,别人都没有就你有....
你给出的出错行需要跟踪进去才可能发现问题
既然是在访问频繁的时候才会出现,那可能与系统资源不足有关系了

人气教程排行