gpt4 book ai didi

PHP if 简写

转载 作者:IT王子 更新时间:2023-10-29 00:06:33 29 4
gpt4 key购买 nike

我有一个字符串,我想将它附加到其他字符串。比方说:

$my_string = 'Hello';

$my_string .= ' there';

这将返回“你好”。

我想像这样设置条件:

$my_string = 'Hello';

$append = 'do';

if ( $append == 'do' ) {

$my_string .= ' there';

}

现在,我想使用三元运算来执行此操作,但我遇到的所有示例都是针对 if/else 的,类似于:

$my_string .= ( $append == 'do' ) ? ' there' : '';

那么是否可以只用 IF 而不用 else 呢?

最佳答案

没有。然而,相反的情况也是可能的。这是来自 PHP 文档的引述:

Since PHP 5.3, it is possible to leave out the middle part of the ternary operator. Expression expr1 ?: expr3 returns expr1 if expr1 evaluates to TRUE, and expr3 otherwise.

http://php.net/manual/en/language.operators.comparison.php

关于PHP if 简写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6447606/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com