Home Backend Development PHP Tutorial In-depth understanding of the relationship between 0, null, empty, empty, false, and strings in PHP

In-depth understanding of the relationship between 0, null, empty, empty, false, and strings in PHP

Jul 25, 2016 am 08:58 AM
empty false null

  1. //Judge the relationship between 0 and '' and empty null false start//

  2. if('safdasefasefasf'==0) {

  3. echo "The string is converted into a number equal to 0
    ";
  4. }//output: The string is converted into a number equal to zero.

  5. This is a key example

  6. The manual explains: The value is determined by the first part of the string. If the string begins with legal numeric data, that number is used as its value, otherwise its value is 0 (zero).

  7. In other words, '3asfdf'==3 ; 'adsfasdf'==0 Be very careful

  8. $a=0;

  9. if($a= =''){
  10. echo "0 is equal to ''
    ";
  11. } //output:0 is equal to ''
  12. if(trim($a)==''){
  13. echo "trim(0 ) is equal to ''
    ";
  14. } //no output

  15. if($a===''){

  16. echo "0===''
    ";
  17. } //no output
  18. if(empty($a)){
  19. echo "'' is empty
    ";
  20. } //output:'' is empty
  21. if(is_null ($a)){
  22. echo "0 is null
    ";
  23. } //no output
  24. if(is_numeric($a)){
  25. echo "0 is numeric
    ";
  26. } //output:0 is numeric
  27. if(is_string($a)){
  28. echo "0 is string
    ";
  29. } //no output
  30. if(strval($a)==' '){
  31. echo "0 converted into a string is ''
    ";
  32. } //no output
  33. // Determine the relationship between 0 and '' and empty null false end //
  34. // Determine the relationship between '' and 0 and empty null false start //

  35. $b = '';

  36. if($b==0){
  37. echo "'' is equal to 0
    ";
  38. } //output:'' is equal to 0
  39. if(!''){
  40. echo "'' is false
    ";
  41. } // output:'' is false
  42. if(!0){
  43. echo "0 is false
    ";
  44. } //output:0 is false bbs.it-home.org
  45. // Judge '' and The relationship between 0 and empty null falseend //

  46. echo "Be careful when judging empty (''), 0 is also equivalent to '', 0 and '' are both equivalent to empty Characters and false, it is best to use ===";

  47. ?>

Copy the code

Output results: 0 is equal to " " is empty 0 is numeric " is equal to 0 " which is false. 0 is false. Be careful when judging empty ("). 0 is also equivalent to ". 0 and " are both equivalent to empty characters and false, and are judged to be empty. It is best to use === and can only be explained this way: 0 is also equivalent to ", 0 and " are equivalent to the null character and false. Be careful when judging empty ("). 0 is also equivalent to ", 0 and " are equivalent to empty characters and false. It is best to use === when judging empty;

echo 0 == null; echo '**
' ; //true echo 0 === null; echo '**
' ; //false echo (string)0 != null; echo '**
' ; //true echo 0 != null; echo '**
' ; //false echo 0 !== null; echo '**
' ; //true


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the difference between null and NULL in c language What is the difference between null and NULL in c language Sep 22, 2023 am 11:48 AM

The difference between null and NULL in C language is: null is a macro definition in C language, usually used to represent a null pointer, which can be used to initialize pointer variables, or to determine whether the pointer is null in a conditional statement; NULL is a macro definition in C language A predefined constant in , usually used to represent a null value, used to represent a null pointer, null pointer array or null structure pointer.

What do undefined and null mean? What do undefined and null mean? Nov 20, 2023 pm 02:39 PM

In JavaScript, both undefined and null represent the concept of "nothing": 1. undefined represents an uninitialized variable or a non-existent property. When a variable is declared but no value is assigned to it, the value of the variable is undefined , when accessing properties that do not exist in the object, the returned value is also undefined; 2. null represents an empty object reference. In some cases, the object reference can be set to null to release the memory it occupies.

PHP determines whether a specified key exists in an array PHP determines whether a specified key exists in an array Mar 21, 2024 pm 09:21 PM

This article will explain in detail how PHP determines whether a specified key exists in an array. The editor thinks it is very practical, so I share it with you as a reference. I hope you can gain something after reading this article. PHP determines whether a specified key exists in an array: In PHP, there are many ways to determine whether a specified key exists in an array: 1. Use the isset() function: isset($array["key"]) This function returns a Boolean value, true if the specified key exists, false otherwise. 2. Use array_key_exists() function: array_key_exists("key",$arr

What is the difference between null and undefined What is the difference between null and undefined Nov 08, 2023 pm 04:43 PM

The difference between null and undefined is: 1. Semantic meaning; 2. Usage scenarios; 3. Comparison with other values; 4. Relationship with global variables; 5. Relationship with function parameters; 6. Nullability check; 7. Performance considerations; 8. Performance in JSON serialization; 9. Relationship with types. Detailed introduction: 1. Semantic meaning, null usually means knowing that this variable will not have any valid object value, while undefined usually means that the variable has not been assigned a value, or the object does not have this attribute; 2. Usage scenarios, etc.

When to use null and undefined When to use null and undefined Nov 13, 2023 pm 02:11 PM

Both null and undefined indicate a lack of value or an undefined state. Depending on the usage scenario, there are some guiding principles for choosing to use null or undefined: 1. When you need to clearly indicate that a variable is empty or invalid, you can use null; 2. When a variable has been declared but not yet assigned a value, it will be set to undefined by default; 3. When you need to check whether a variable is empty or undefined, use the strict equality operator "===" to determine whether the variable is null or undefined. .

What are the uses of null in java What are the uses of null in java Mar 01, 2024 am 10:10 AM

Usage: 1. Initialize the reference type variable to null, indicating that the variable does not currently point to any object; 2. Set the reference type variable to null, which can release the memory space of the object referenced by the variable and help the garbage collector to recover This object; 3. Use null to check whether a reference is empty. You can avoid the occurrence of NullPointerException by judging whether the reference is null. 4. Use null in conditional judgment to judge whether a reference is empty.

PHP function introduction—empty(): Check whether the variable is empty PHP function introduction—empty(): Check whether the variable is empty Jul 25, 2023 am 10:23 AM

PHP function introduction—empty(): Check whether a variable is empty. In PHP programming, it is often necessary to judge a variable. It is a common requirement to judge whether a variable is empty. PHP's built-in empty() function is used to check whether the variable is empty. This article will introduce the usage of the empty() function and provide some practical code examples. The usage of the empty() function is very simple, it accepts one parameter and returns a Boolean value. When the value of the parameter is one of the following situations, the empty() function

How to remove null from php array How to remove null from php array Dec 23, 2022 am 10:27 AM

How to remove nulls from PHP arrays: 1. Use the "foreach($arr as $k=>$v){...}" method to remove null values ​​from the array; 2. Use the while syntax structure to remove null values; 3. Use The array_filter function filters the array and removes null values.

See all articles