php – 从函数返回“错误”的最佳做法
发布时间:2020-12-13 14:02:24 所属栏目:PHP教程 来源:网络整理
导读:我有一个功能: public function CustomerRating() { $result = $db-query("..."); $row = $result-fetch_assoc(); if($row) $output = $row['somefield']; } else { $output = "error"; } return $output;}//somewhere on another page...if(is_numeric($cl
我有一个功能:
public function CustomerRating() { $result = $db->query("..."); $row = $result->fetch_assoc(); if($row) $output = $row['somefield']; } else { $output = "error"; } return $output; } //somewhere on another page... if(is_numeric($class->CustomerRating()) { echo $class->CustomerRating; } else { echo "There is an error with this rating."; } 有没有更好的方法来发现错误?在这个函数中,如果没有返回任何行,它本身并不意味着“错误”,它只是意味着无法计算该值.当我检查一个函数的结果时,我觉得有一个更好的方法来检查在if函数中显示之前返回的数据.最好的方式是做什么?我想返回一个“false”,但是当调用这个函数时我该怎么检查呢?谢谢!
有(在我看来)有两种常见的方法:
>返回错误 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |