當前位置: 首頁>>編程語言>>正文


PHP檢測一個值是否為空(null或false)

本文摘譯整理自PHP最佳實踐-檢測一個值是否為null或false。

使用 === 操作符來檢測 null 和布爾 false 值。

PHP 寬鬆的類型係統提供了許多不同的方法來檢測一個變量的值。 然而這也造成了很多問題。 使用 == 來檢測一個值是否為 null 或 false,如果該值實際上是一個空字符串或 0,也會誤報為 false。 isset 是檢測一個變量是否有值, 而不是檢測該值是否為 null 或 false,因此在這裏使用是不恰當的。

is_null() 函數能準確地檢測一個值是否為 null, is_bool 可以檢測一個值是否是布爾值(比如 false), 但存在一個更好的選擇:=== 操作符。=== 檢測兩個值是否同一, 這不同於 PHP 寬鬆類型世界裏的 相等。它也比 is_null() 和 is_bool() 要快一些,並且有些人認為這比使用函數來做比較更幹淨些。

示例

<?php
$x = 0;
$y = null;

// Is $x null?
if($x == null)
    print('Oops! $x is 0, not null!');

// Is $y null?
if(is_null($y))
    print('Great, but could be faster.');

if($y === null)
    print('Perfect!');

// Does the string abc contain the character a?
if(strpos('abc', 'a'))
    // GOTCHA!  strpos returns 0, indicating it wishes to return the position of the first character.
    // But PHP interpretes 0 as false, so we never reach this print statement!
    print('Found it!'); 

//Solution: use !== (the opposite of ===) to see if strpos() returns 0, or boolean false.   
if(strpos('abc', 'a') !== false)
    print('Found it for real this time!');
?>

可能踩的坑

  • 測試一個返回 0 或布爾 false 的函數的返回值時,如 strpos(),始終使用 === 和!==,否則你就會碰到問題。

進一步閱讀

本文由《純淨天空》出品。文章地址: https://vimsky.com/zh-tw/article/1730.html,未經允許,請勿轉載。