Skip to content

Instantly share code, notes, and snippets.

@clone1018
Created March 28, 2013 22:02
Show Gist options
  • Save clone1018/5267211 to your computer and use it in GitHub Desktop.
Save clone1018/5267211 to your computer and use it in GitHub Desktop.
<?php
$input = 'derp';
echo call_user_func($input);
function derp() {
return "Derp!";
}
function herp() {
return "Herp!";
}
function funky() {
$test = 1 + 1;
return "Funky" + $test;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment