if 语句中返回变量 - 可以多次尝试吗?

发布于 2024-11-29 10:56:10 字数 620 浏览 1 评论 0原文

我不确定我的术语是否正确,但我认为下面的代码将是非常自我解释的:

function a($p){
    if($p===true){
        return 'yep';
    }
    else{
        return false;
    }
}

if($test=a(true)){
    echo $test; // this will echo out 'yep'
}

上面的代码按预期工作。我想要完成的是这样的:

function a($p){
    if($p===true){
        return 'yep';
    }
    else{
        return false;
    }
}

if($test=a(false)||$test=a(true)){
    var_dump($test); // this will show $test being bool(true) NOT yep
}

在不执行中间函数的情况下这是否可能?

我也尝试过:

if($test=(a(false)||a(true)){ ... }

无济于事。

i am unsure weather i am terming this correctly, but i think the following code will be pretty self explaintory:

function a($p){
    if($p===true){
        return 'yep';
    }
    else{
        return false;
    }
}

if($test=a(true)){
    echo $test; // this will echo out 'yep'
}

the above code works as expected. what i am trying to accomplish is something like this:

function a($p){
    if($p===true){
        return 'yep';
    }
    else{
        return false;
    }
}

if($test=a(false)||$test=a(true)){
    var_dump($test); // this will show $test being bool(true) NOT yep
}

is this possible without doing an intermediate function?

i have also tried:

if($test=(a(false)||a(true)){ ... }

to no avail.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2024-12-06 10:56:10
$test = a(false) || $test = a(true)

将被评估为

$test = ( a(false) || $test=a(true) )

逻辑运算符始终返回布尔值,因此 || 表达式的结果将分配给 $test

如果您希望上面的表达式将字符串分配给 $test,那么您可以使用 or ,它具有 优先级较低 然后是赋值运算符(在这种情况下我更喜欢这种方式):

$test = a(false) or $test = a(true)

DEMO

或者你正确设置了括号:

($test = a(false)) || ($test = a(true))
$test = a(false) || $test = a(true)

will be evaluated as

$test = ( a(false) || $test=a(true) )

Logical operators always return a boolean value, so the result of the || expression will be assigned to $test.

If you want that the expressions above assigns the string to $test, then you have use or which has a lower precedence then the assignment operator ( I would prefer this way in this context):

$test = a(false) or $test = a(true)

DEMO

Or you set the parenthesis correctly:

($test = a(false)) || ($test = a(true))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文