非常感谢您阅读和回复,如果可以的话。
在该函数的if语句中,我想根据字符串的布尔值来测试' true'或者' false'
$email_form_comments = $_POST['comments']; // pull post data from form
if ($email_form_comments) $comments_status = true; // test if $email_form_comments is instantiated. If so, $comments_status is set to true
else $error = true; // if not, error set to true.
test_another_condition($comments_status); // pass $comments_status value as parameter
function test_another_condition($condition) {
if($condition != 'true') { // I expect $condition to == 'true'parameter
$output = "Your Condition Failed";
return $output;
}
}
我的想法是$条件将保持真实的'价值,但事实并非如此。
答案 0 :(得分:1)
我认为这里的关键是PHP将空字符串评估为false和非空字符串为true,并且在设置和比较布尔值时,请确保使用不带引号的常量。使用true
或false
而不是'true'
或'false'
。另外,我建议编写if语句,以便它们在单个变量上设置备用值,或者在条件失败时函数返回备用值。
我对您的代码进行了一些小修改,以便您的函数评估为真
// simulate post content
$_POST['comments'] = 'foo'; // non-empty string will evaluate true
#$_POST['comments'] = ''; // empty string will evaluate false
$email_form_comments = $_POST['comments']; // pull post data from form
if ($email_form_comments) {
$comments_status = true; // test if $email_form_comments is instantiated. If so, $comments_status is set to true
} else {
$comments_status = false; // if not, error set to true.
}
echo test_another_condition($comments_status); // pass $comments_status value as parameter
function test_another_condition($condition)
{
if ($condition !== true) {
return 'Your Condition Failed';
}
return 'Your Condition Passed';
}