三元運算子用於將if else語句替換為一條語句。
(condition) ? expression1 : expression2;
if(condition) { return expression1; } else { return expression2; }
如果條件為真,則傳回表達式1的結果,否則傳回表達式2的結果。條件或表達式中不允許使用void。
空合併運算子用於在變數為空時提供非空值。
(variable) ?? expression;
if(isset(variable)) { return variable; } else { return expression; }
如果變數為空,則傳回表達式的結果。
<!DOCTYPE html> <html> <head> <title>PHP Example</title> </head> <body> <?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/>"); ?> </body> </html>
not passed not passed
以上是在php中,三元運算子和空合併運算子之間的差異是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!