Hướng dẫn is 1 true in php? - 1 đúng trong php?

Đâ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.

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.

$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.

// == 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 (bool) hoặc (boolean). 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 (bool) or (boolean) 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:

  • chính boolean falsefalse 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).

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!

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

$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"
;
}
?>
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

(bool)0

(bool)1

true2

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

14 năm trước

(bool)3

(bool)4

(bool)5

(bool)6

artktec tại gmail dot com ¶

Wackzingo ¶

(bool)7

(bool)8

true2

Marklgr ¶

6 năm trước

(boolean)0

(boolean)1

true2

Terminatorul tại Gmail Dot Com ¶

9 năm trước

(boolean)3

(boolean)4

(boolean)5

(boolean)6

(boolean)7

(boolean)8

true2

Mark Simon ¶

5 năm trước

false0

false1

false2

false3

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 ¶

Wackzingo ¶

false5

Marklgr ¶

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

1 sai hay đúng?

1 được coi là đúng vì nó không khác.Biểu thức thứ tư gán giá trị 0 cho i.0 được coi là sai. because it is non-zero. The fourth expression assigns a value of 0 to i. 0 is considered to be false.

1 đúng hay sai trong boolean?

Các giá trị và hoạt động Boolean không đổi là 1 và không đổi sai là 0. Tuy nhiên, nó được coi là thực hành tốt, mặc dù, để viết đúng và sai trong chương trình của bạn cho các giá trị boolean thay vì 1 và 0.Constant true is 1 and constant false is 0. It is considered good practice, though, to write true and false in your program for boolean values rather than 1 and 0.

0 đúng hay sai PHP?

Khi chuyển đổi sang bool, các giá trị sau được coi là sai: chính Boolean Sai.Số nguyên 0 (không) Floats 0,0 và -0.0 (không)the integer 0 (zero) the floats 0.0 and -0.0 (zero)

1 có đúng trong lập trình không?

Không được sử dụng để biểu diễn sai, và một được sử dụng để biểu diễn đúng.Để giải thích, số không được hiểu là sai và bất cứ điều gì khác không được hiểu là đúng.Để làm cho cuộc sống dễ dàng hơn, các lập trình viên C thường xác định các thuật ngữ "đúng" và "sai" để có các giá trị 1 và 0 tương ứng.One is used to represent true. For interpretation, Zero is interpreted as false and anything non-zero is interpreted as true. To make life easier, C Programmers typically define the terms "true" and "false" to have values 1 and 0 respectively.