Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between null and empty?

Tags:

php

null

isset

I am new to the concept of empty and null. Whilst I have endeavoured to understand the difference between them, I am more confused. I came across an article at http://www.tutorialarena.com/blog/php-isset-vs-empty.php however I still don't see when you would use isset and empty when validating forms. Seeing that I don't grasp the difference, I don't want to be using the incorrect functions as well as not be able to use the functions in other areas. Can someone give examples that will help me understand? I am very new to coding so would appreciate if someone could give me real world examples and at the same time keep it simply enough for noob to follow.

like image 374
PeanutsMonkey Avatar asked Apr 11 '11 00:04

PeanutsMonkey


5 Answers

The table below is an easy reference for what these functions will return for different values. The blank spaces means the function returns bool(false). enter image description here

refer this link for more https://www.virendrachandak.com/techtalk/php-isset-vs-empty-vs-is_null/

like image 67
DEVARAJ JOHNSON Avatar answered Sep 30 '22 10:09

DEVARAJ JOHNSON


A variable is NULL if it has no value, and points to nowhere in memory.

empty() is more a literal meaning of empty, e.g. the string "" is empty, but is not NULL.

The following things are considered to be empty:

  • "" (an empty string)
  • 0 (0 as an integer)
  • 0.0 (0 as a float)
  • "0" (0 as a string)
  • NULL
  • FALSE
  • array() (an empty array)
  • var $var; (a variable declared, but without a value in a class)

Source.


Example

$a is NULL.

$a = '' is empty, but not NULL.


Update

If $a='' is empty but not NULL, when do I use the empty() function and when do I use the isset() function.

isset() will return FALSE is the variable is pointing to NULL.

Use empty() when you understand what is empty (look at the list above).

Also when you say it points nowhere in memory, what does that mean exactly?

It means that $str = '' will be in memory as a string with length of 0.

If it were $str = NULL, it would not occupy any memory.

like image 41
alex Avatar answered Sep 30 '22 09:09

alex


Null is a placeholder that generally means "no data about this is available".

The use of null for this is just a convention, but a rather widespread one, to the point where some programming languages support the convention directly. The reason this convention exists has IMHO historically to do with "pointers"; many times a procedure will be defined to return a pointer to an answer, and will return what is traditionally called a Null pointer if it could not produce an answer for some reason.

Empty means (if this is a set) that it has no members. That's an explicit answer, and it is very different than "no data about this is available".

In the PHP world, apparantly uninitialized variables have the Null value, and isset on such a variable returns FALSE. For arrays and strings, PHP follows the convention that "empty" means "has no members" although arrays and strings are not technically sets.

PHP apparantly has this funny idea that 0 and 0.0 are also "empty", by PHP design. That's abusive of the concept of "empty" IMHO: Individual numbers are not sets, so 0 can't reasonably by "empty". THis just leads to obscure programming because it violates the principle of least surprise. I'm sure the PHP designers would are that "zero is the empty number" as some kind of vague analogy; but the if analogy is vague, why bother with it? But then PHP is full of silly ideas.

like image 21
Ira Baxter Avatar answered Sep 30 '22 10:09

Ira Baxter


NULL is a special value which explicitly states that the variable has not been set to any value yet. Be careful with using the empty() function as you can't just determine that a variable is exactly NULL using it. For example the empty() function will return true if an int is set to 0. If you need to make sure a variable is exactly NULL use if($variable == NULL).

For more info on empty() see http://php.net/manual/en/function.empty.php

like image 25
Chris Avatar answered Sep 30 '22 10:09

Chris


There are some good answers here, which I won't repeat. In the case of validating forms, though, when a form is submitted, the value of each form input element is sent to the server in the $_POST variable. You can check for the existence of a particular input by using isset().

isset($_POST['username'])

If this returns true, then this request to the server was the result of posting a form containing an input element named "username". Now that we know that we have a value for that form element, we can see if it has a valid value. empty() will tell us whether the user actually entered any data in the field, or whether they left it empty.

empty($_POST['username'])

If that returns true then the form submitted to the server had a field named "username" but the user didn't enter anything into before submitting the form.

like image 33
Andrew Cooper Avatar answered Sep 30 '22 10:09

Andrew Cooper