将字符串的True / False布尔值传递给函数参数

时间:2015-12-15 19:56:20

标签: php boolean parameter-passing

非常感谢您阅读和回复,如果可以的话。

  • 在一个函数中,我测试一个条件,然后创建一个字符串' true'或者' false'然后我创建一个全局变量。
  • 然后我用该字符串作为参数
  • 调用另一个函数
  • 在该函数的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;
         }
    
    }
    

我的想法是$条件将保持真实的'价值,但事实并非如此。

1 个答案:

答案 0 :(得分:1)

我认为这里的关键是PHP将空字符串评估为false和非空字符串为true,并且在设置和比较布尔值时,请确保使用不带引号的常量。使用truefalse而不是'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';
}