我对 PHP 7 中出现的空 Coalesce 运算符(?? 运算符)的可能性感到兴奋。但是,我并不了解所有情况。
对于以下情况,我的结果是什么?
function NC($x){
$y = array();
$y['test'] = $x;
$returnThis = $y['test'] ?? "Foo";
return $returnThis;
}
echo(NC(NULL)); // I know this will return "Foo".
/* But I have no clue about what these will return. */
echo(NC(0));
echo(NC(-1));
echo(NC(""));
echo(NC(array()));