嗯,我有一個WampServer安裝在我的WinXP框與PHP 3.5.3和apache 2.2.17。奇怪的是,try catch塊不起作用,在google搜索後我只能發現bug在eaccelerator中(但phpinfo沒有顯示它的蹤跡)。嘗試在PHP 5.3.5 Catch塊不工作
我在哪裏出錯?
try{
echo "from try";
parent::conect();
}catch(Exception $e){
echo "from catch";}
我的輸出應該
from tryfrom catch
而是我得到
from try
Fatal Error: cannot access parent:: when no class...
你可以發佈你的代碼嗎? –
我假設你不希望嘗試/捕捉從空氣中工作。你的代碼在哪裏? – adlawson
無法重現,適合我。你需要給我們更多的細節。 – deceze