<?php
function foo() {
  $c = "hello";
  return $c;
}
var_dump(foo());
?>