<?php

function test($q=5)
{
  return $q;
}

  printf("%d", test());

$b = NULL;

if(is_null($b)) 
  printf("is NULL");

?>