Skip to content

Latest commit

 

History

History
4 lines (4 loc) · 168 Bytes

php7.md

File metadata and controls

4 lines (4 loc) · 168 Bytes

php 7 新特性

  • ?? 操作符
    • $b = isset($a) ? $a : 1; 等价于 $b = $a ?? 1;
    • $b = isset($a['key']) ? $a['key'] : 1; 等价于 $b = $a['key'] ?? 1;