标签: php
我已经看过这段代码了,我不知道这是什么意思
$page = $_GET['page'] ?? 'home';
有人可以告诉我它的含义吗?
答案 0 :(得分:2)
它是null coalesce operator。 它将返回$_GET['page'],除非它null。如果它为null,则返回默认值'home'。
null coalesce operator
$_GET['page']
null
'home'
它的含义与:
!is_null($_GET['page']) ? $_GET['page'] : 'home'