Hướng dẫn php check for boolean - kiểm tra php cho boolean

Đây là loại đơn giản nhất. Một bool thể hiện một giá trị sự thật. Nó có thể là true hoặc false.bool expresses a truth value. It can be either true or false. bool expresses a truth value. It can be either true or false.

Cú pháp

Để chỉ định một bool theo nghĩa đen, hãy sử dụng các hằng số true hoặc false. Cả hai đều không nhạy cảm trường hợp.bool literal, use the constants true or false. Both are case-insensitive. bool literal, use the constants true or false. Both are case-insensitive.

$foo True// assign the value TRUE to $foo
?>

Thông thường, kết quả của một toán tử trả về giá trị bool được chuyển vào cấu trúc điều khiển.bool value is passed on to a control structure. bool value is passed on to a control structure.

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>

Chuyển đổi thành Boolean

Để chuyển đổi rõ ràng một giá trị thành Bool, hãy sử dụng các phôi false0 hoặc false1. Tuy nhiên, trong hầu hết các trường hợp, dàn diễn viên không cần thiết, vì giá trị sẽ được tự động chuyển đổi nếu toán tử, hàm hoặc cấu trúc điều khiển yêu cầu đối số bool.bool, use the false0 or false1 casts. However, in most cases the cast is unnecessary, since a value will be automatically converted if an operator, function or control structure requires a bool argument. bool, use the false0 or false1 casts. However, in most cases the cast is unnecessary, since a value will be automatically converted if an operator, function or control structure requires a bool argument.

Xem thêm Loại tung hứng.

Khi chuyển đổi sang BOOL, các giá trị sau được coi là false:bool, the following values are considered false: bool, the following values are considered false:

  • chính boolean falsefalse itself false itself
  • Số nguyên 0 (không)
  • Phao 0,0 và -0,0 (không)
  • Chuỗi trống và chuỗi "0"
  • một mảng có phần tử không
  • Loại NULL đặc biệt (bao gồm các biến số không đặt)
  • Các đối tượng SimplexML được tạo từ các yếu tố trống không được quy kết, tức là các phần tử không có trẻ em cũng không thuộc tính.

Mọi giá trị khác được coi là true (bao gồm mọi tài nguyên và false1).true (including any resource and false1). true (including any resource and false1).

Cảnh báo

false2 được coi là true, giống như bất kỳ số khác không khác (dù là âm hay dương)!true, like any other non-zero (whether negative or positive) number! true, like any other non-zero (whether negative or positive) number!

false4

Fred Koschara ¶

9 năm trước

false5

false6

false7

false8

false9

true0

true1

true2

Mark Simon ¶ ¶

5 năm trước

true3

true4

true5

true6

true7

true2

Quản trị viên tại Eexit Dot Fr ¶ ¶

13 năm trước

true9

false0

false1

false2

Goran77 tại Fastmail Dot FM ¶ ¶

6 năm trước

false3

false4

false5

false6

true2

Terminatorul tại Gmail Dot Com ¶ ¶

15 năm trước

false8

false9

true2

Steve ¶ ¶

14 năm trước

$foo True// assign the value TRUE to $foo
?>
1

$foo True// assign the value TRUE to $foo
?>
2

$foo True// assign the value TRUE to $foo
?>
3

$foo True// assign the value TRUE to $foo
?>
4

true2

artktec tại gmail dot com ¶ ¶

15 năm trước

$foo True// assign the value TRUE to $foo
?>
6

$foo True// assign the value TRUE to $foo
?>
7

$foo True// assign the value TRUE to $foo
?>
8

Steve ¶ ¶

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
0

$foo True// assign the value TRUE to $foo
?>
9

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
2

true2

Mark Simon ¶ ¶

5 năm trước

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
4

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
5

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
6

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
7

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
8

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
    echo 
"The version is 1.23";
}
// this is not necessary...
if ($show_separators == TRUE) {
    echo 
"


\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
    echo 
"
\n"
;
}
?>
9

false00

false01

true2

Quản trị viên tại Eexit Dot Fr ¶ ¶

14 năm trước

false03

false04

false05

false06

artktec tại gmail dot com ¶ ¶

$foo True// assign the value TRUE to $foo
?>
9

false07

false08

true2

Wackzingo ¶

6 năm trước

false10

false11

true2

Terminatorul tại Gmail Dot Com ¶ ¶

9 năm trước

false13

false14

false15

false16

false17

false18

true2

Mark Simon ¶ ¶

5 năm trước

false0

false1

false2

Quản trị viên tại Eexit Dot Fr ¶ ¶

false4

false5

false6

false7

true2

Quản trị viên tại Eexit Dot Fr ¶ ¶

13 năm trước

false9

false0

true2

Goran77 tại Fastmail Dot FM ¶ ¶

6 năm trước

false2

false3

true2

Terminatorul tại Gmail Dot Com ¶ ¶

$foo True// assign the value TRUE to $foo
?>
9

false5

Wackzingo ¶

13 năm trước

false6

Goran77 tại Fastmail Dot FM ¶ ¶

6 năm trước

false7

false8

false9

false00

Terminatorul tại Gmail Dot Com ¶ ¶

14 năm trước

false01

false02

false03

false04

artktec tại gmail dot com ¶ ¶

13 năm trước

false05

Goran77 tại Fastmail Dot FM ¶ ¶

6 năm trước

false06

false07

true2