[問題] 進入分區...出錯誤
發表於 : 2004-06-12 22:42
** 怎樣可以解決 ??
Parse error: parse error in /home/pinghk/public_html/bbs/includes/template.php(127) : eval()'d code on line 120
Parse error: parse error in /home/pinghk/public_html/bbs/includes/template.php(127) : eval()'d code on line 120
function pparse($handle)
{
if (!$this->loadfile($handle))
{
die("Template->pparse(): Couldn't load template file for handle $handle");
}
// actually compile the template now.
if (!isset($this->compiled_code[$handle]) || empty($this->compiled_code[$handle]))
{
// Actually compile the code now.
$this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]);
}
// Run the compiled code.
eval($this->compiled_code[$handle]); <~~ 127
return true;
}