PHP 如果速记
2022-08-30 21:23:34
我有一个字符串,我想把它追加到其他一些字符串。比方说:
$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而不用别的呢?