我有一个字符串,我想附加一些其他字符串.我们说:
$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而没有别的吗?
谢谢.
没有…三元意味着需要条件,真实部分和虚假部分的三个部分
原文链接:https://www.f2er.com/php/131613.html