<?php
function foo($var) {
  var_dump($var);
}
foo(1);
foo(1.0);
foo("hello");
foo(array());
?>