$first_name = Teodor;
if (isset($first_name)) {
print 'variable is set
and it is '.$first_name .'
';
}
unset($first_name);
if (empty($first_name)) {
print '
variable is not set
'.'and you are looking for $first_name';
}
Резултатът е:
variable is set
and it is Teodor
variable is not set
and you are looking for $first_name
Няма коментари:
Публикуване на коментар