Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

what is is_null in php

// is _nuul function returens wether a var is null ore not . 
// if the var is null the function returns 1. if it is not null retyrns false / nothing

<?php
  
  $x= Null; 
if(is_null($x){  
  echo " yes";}else{ echo "false";}
   
   
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #php
ADD COMMENT
Topic
Name
3+7 =