Created
March 28, 2013 22:02
-
-
Save clone1018/5267211 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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