Skip to content

Instantly share code, notes, and snippets.

@steffengrahl
Created August 13, 2016 07:48
Show Gist options
  • Save steffengrahl/a99dccb367bd7b7e1f3a8d6fd9e0f371 to your computer and use it in GitHub Desktop.
Save steffengrahl/a99dccb367bd7b7e1f3a8d6fd9e0f371 to your computer and use it in GitHub Desktop.
<?php
function foo() {
return (1 + 2);
}
function bar($a) {
return ($a + 3);
}
echo bar(foo());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment