Answers for "if string is undefined or empty or not set in php"

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 "if string is undefined or empty or not set in php"

Browse Popular Code Answers by Language