由于 PHP 是一种动态语言,检查提供的字段是否为空的最佳方法是什么?
我想确保:
这是我到目前为止所得到的:
$question = trim($_POST['question']); if ("" === "$question") { // Handle error here }
必须有一个更简单的方法来做到这一点?
// Function for basic field validation (present and neither empty nor only white space function IsNullOrEmptyString($str){ return ($str === null || trim($str) === ''); }