PHP 7 - zerowy operator koalescencji
W PHP 7 nowa funkcja, null coalescing operator (??)został wprowadzony. Służy do zastąpieniaternaryoperacja w połączeniu z funkcją isset (). PlikNulloperator koalescencji zwraca swój pierwszy operand, jeśli istnieje i nie ma wartości NULL; w przeciwnym razie zwraca swój drugi operand.
Przykład
<?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);
?>
Tworzy następujące dane wyjściowe przeglądarki -
not passed
not passed
not passed