主页
PHP
PHP 运算符
tryphp_oper_null_coalescing
运行 ❯
×
更改方向
保存代码
更改主题
<?php // variable $user is the value of $_GET['user'] // and 'anonymous' if it does not exist echo $user = $_GET["user"] ?? "anonymous"; echo("
"); // variable $color is "red" if $color does not exist or is null echo $color = $color ?? "red"; ?>
anonymous
red