fork download
  1. <?php
  2.  
  3. function test($q=5)
  4. {
  5. return $q;
  6. }
  7.  
  8. printf("%d", test());
  9.  
  10. $b = NULL;
  11.  
  12. if(is_null($b))
  13. printf("is NULL");
  14.  
  15. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
5is NULL