Answers for "php check if value if null or 0 or empty"

PHP
5

php code to check if variable is null

if(empty($var1)){
    echo 'This line is printed, because the $var1 is empty.';
}
Posted by: Guest on May-01-2020

Code answers related to "php check if value if null or 0 or empty"

Browse Popular Code Answers by Language