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';
}
但是,它不仅会捕获部分并返回,还会在以 .开头的行中nothing
显示警告。我从来没有想过在 php 中使用异常,但在 C# 中经常使用它们,而且在 PHP 中它们的工作方式似乎不同,或者像往常一样,我遗漏了一些明显的东西。Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, null given
while