php example code : is_null function in php
is-null-php-example.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>php example code : is_null function in php</title>
</head>
<body>
<h3>php example code : is_null function in php</h3>
<?php
/*
----------------------------------------------------------------------------
let us make a null and test it wheather it is null or not
by using php is_null function
----------------------------------------------------------------------------
*/
$myNull = NULL;
$nullFlag = is_null($myNull);
if($nullFlag == true)
{
echo 'it is a null';
}
else
{
echo 'it is not a null';
}
echo "<br><br>";
/*
----------------------------------------------------------------------------
let us make a non null character and test it wheather it is null or not
by using php is_null function
----------------------------------------------------------------------------
*/
$myNull = 10;
$nullFlag = is_null($myNull);
if($nullFlag == true)
{
echo 'it is a null';
}
else
{
echo "<h4 style='color:pink; background:#999999;'>it is not a null</h4>";
}
?>
</body>
</html>

No comments:
Post a Comment
leave your comments here..