Created
November 17, 2017 16:10
-
-
Save kuredev/b460c783674f7a9a3c326e1c87f86831 to your computer and use it in GitHub Desktop.
call_user_funcの小さなメモ
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 | |
| function test($t, $s){ | |
| echo $t.PHP_EOL; | |
| echo $s.PHP_EOL; | |
| } | |
| call_user_func("test", "2", "3"); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
実行結果