Answers for "test php 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

Browse Popular Code Answers by Language