try { $matrix = Query::take("SELECT moo"); //this makes 0 sense while($row = MysqLi_fetch_array($matrix,MysqL_BOTH)) //and thus this line should be an error { } return 'something'; } catch(Exception $e) { return 'nothing'; }
但是,而不是只是去捕获部分并返回任何内容,它会显示一条警告警告:MysqLi_fetch_array()期望参数1为MysqLi_result,以while开头的行给出null.我从来没有想过在PHP中使用异常,但是在C#中使用了很多异常,在PHP中似乎有所不同,或者像往常一样,我缺少一些明显的东西.