php 7 新特性 ?? 操作符 $b = isset($a) ? $a : 1; 等价于 $b = $a ?? 1; $b = isset($a['key']) ? $a['key'] : 1; 等价于 $b = $a['key'] ?? 1;