<?php
function foo($var) {
  $res = $var + 2;
  var_dump($res);
}
foo("hello");
?>