PHP 7-Null 통합 연산자
새로운 기능인 PHP 7에서 null coalescing operator (??)소개되었습니다. 대체하는 데 사용됩니다ternaryisset () 함수와 함께 작동합니다. 그만큼Null통합 연산자는 존재하고 NULL이 아닌 경우 첫 번째 피연산자를 반환합니다. 그렇지 않으면 두 번째 피연산자를 반환합니다.
예
<?php
// fetch the value of $_GET['user'] and returns 'not passed'
// if username is not passed
$username = $_GET['username'] ?? 'not passed';
print($username);
print("<br/>");
// Equivalent code using ternary operator
$username = isset($_GET['username']) ? $_GET['username'] : 'not passed';
print($username);
print("<br/>");
// Chaining ?? operation
$username = $_GET['username'] ?? $_POST['username'] ?? 'not passed';
print($username);
?>
다음 브라우저 출력을 생성합니다.
not passed
not passed
not passed