Functions Php

  function somefunct ($somearg){
    $somearg += 3;
  }
  $othernum = 12;
  somefunct ($othernum);
  echo "$othernum","\n";
  
  somefunct (&$othernum);
  echo "$othernum","\n";  
?>