Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道有
if (isset($string)) { echo $string; }
但是有没有办法通过声明来做到这一点?我发现一件事看起来可能是它,但我错了。它是
var_dump(isset($string));
因此,我正在寻找可以设置所有 if 变量的东西,然后在一个语句中全部回显该变量..
也许是这样的:
echo (isset($string)) ? $string : null;
这就是所谓的三元运算符。
不确定我是否完全理解这个问题。