PHP 中的真假
Sarwan Soomro
2023年1月30日
2022年5月13日
boolean
值在 php.ini 中稱為 true
和 false
。在 true
的情況下,輸出是 1
。
使用 false
時,它不顯示任何輸出。值得注意的是,瀏覽器總是以字串的形式呈現這些值。
在 PHP 中使用 true
和 false
作為布林邏輯值
布林值是邏輯值。它們可以是真
或假
。
兩者在 php 中都是區分大小寫的,也是 php 中的簡單資料型別。
$true = True; // returns 1
$false = False; // return nothing
echo $true.PHP_EOL;
echo $false;
//using comparision operator to check boolean values
if ($a == "abc") {
echo "return boolean value"; //returns nothing since $a is not equal to abc thus it is a false
}
if (TRUE) {
//because true means true
echo "Your condition is executed!".PHP_EOL;
}
if (false) {
echo "It will print nothing"; //false returns nothing
}
//Determine integer comparisions with boolean values
echo 5<10; //returns 1 since 5 is actually less ten (condition true)
echo 10 != 5; //returns 1 (true)
echo 5 == 4; //false
輸出:
1
Your condition is executed!
11
在 PHP 中使用 var_dump()
函式確定布林值
我們還可以在 php.ini 中轉換布林值。讓我們首先了解這些引數的一些預定義值分配。
如果我們將以下值轉換為布林值,它們將被視為假
:
false
是false
。0
也是false
。- 諸如
0.0
和-0.0
之類的浮點數也是false
。 - 具有
0
元素的陣列是false
。 NULL
是false
。
相反,所有其他值都被認為是 true
。
我們可以藉助轉儲布林值資訊的 var_dump()
函式來確定布林值。
讓我們用 var_dump
檢查上面提到的錯誤型別:
<?php
var_dump((bool) false); //(false)
var_dump((bool) "0"); //(false)
var_dump((bool) 0.0); //(false)
var_dump((bool) -0.0); //(false)
var_dump((bool) NULL); //(false)
var_dump((bool) array()); //(false)
//true bools (a few examples)
var_dump((bool)true); //true
var_dump((bool)1); //true
var_dump((bool)100); //true
var_dump((bool) array(65)); //true
?>
輸出:
bool(false)
bool(false)
bool(true)
bool(false)
bool(false)
bool(false)
bool(false)
bool(true)
bool(true)
bool(true)
bool(true)
Author: Sarwan Soomro
Sarwan Soomro is a freelance software engineer and an expert technical writer who loves writing and coding. He has 5 years of web development and 3 years of professional writing experience, and an MSs in computer science. In addition, he has numerous professional qualifications in the cloud, database, desktop, and online technologies. And has developed multi-technology programming guides for beginners and published many tech articles.
LinkedIn