function TriggerContent($c, $db){
try {
include 'pages/' . $c . '.php';
$content= getContent();
} catch (Exception $e){
$content = 'Error';
}
return $content;
}
我想要的是顯示error
如果php文件不存在。 但它不起作用...爲什麼試試catch不工作?我究竟做錯了什麼? (php)
我在做什麼錯?
或者這只是不適合嘗試趕上PHP?
使用'file_exists()'然後'throw'異常? – Qirel
getContent()拋出? – marekful
是否在裏面創建變量try catch塊在他們之外不可訪問?我真的不知道, – Phiter