PHP三元运算符的简写形式

来源:互联网 发布:js转圈的进度条效果 编辑:程序博客网 时间:2024/04/30 08:32

1.一般的if...else形式

if(isset($title)){$output = $title;}else{$output = '默认标题';}
2.三元运算符一般形式
$output = $title?$title:'默认标题';

很有重复的感觉,可以简写为下面的形式
$output = $title?:'默认标题';


0 0
原创粉丝点击