标签: php syntax ternary-operator
有没有更简洁,更清晰的方式来写这个?
<?php $a = ($a) ? $a : 'empty'; ?>
答案 0 :(得分:6)
在php5.3中
<?php $a = ($a) ?: 'empty'; ?>