Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 109 Bytes

File metadata and controls

6 lines (5 loc) · 109 Bytes

PHP中的一些非主流语法

$a = null;
$b = 'This is b.';
$a = $a ?: $b;
var_dump($a);