Voting

: seven minus three?
(Example: nine)

The Note You're Voting On

ayyappan dot ashok at gmail dot com
9 years ago
Return Values :
Returns TRUE if var exists and has value other than NULL, FALSE otherwise.

<?php
$a
=NULL;
$b=FALSE; //The out put was TRUE.
$c=TRUE;
$d='';
$e="";
if(isset(
$b)):
echo
"TRUE";
else:
echo
"FALSE";
endif;
?>
Could any one explain me in clarity.

<< Back to user notes page

To Top