我一直在尝试在我的 php 函数中抛出新的异常,但它没有回显错误消息。我本可以改用常规回声,但我真的很想看看有什么不同。请告诉我这段代码有什么问题。
function searchMovie($movieName){
if (!isset($movieName))
throw new Exception('missing movie name');
//execute
//return something here
}
//call the function
echo searchMovie('iron man'); //this gives a result.
echo searchMovie(); //this does not echo the 'missing movie name'
谢谢。对于像我这样的菜鸟的任何帮助将不胜感激。