Skip to content

Instantly share code, notes, and snippets.

@kuredev
Created November 17, 2017 16:10
Show Gist options
  • Select an option

  • Save kuredev/b460c783674f7a9a3c326e1c87f86831 to your computer and use it in GitHub Desktop.

Select an option

Save kuredev/b460c783674f7a9a3c326e1c87f86831 to your computer and use it in GitHub Desktop.
call_user_funcの小さなメモ
<?php
function test($t, $s){
echo $t.PHP_EOL;
echo $s.PHP_EOL;
}
call_user_func("test", "2", "3");
@kuredev

kuredev commented Nov 17, 2017

Copy link
Copy Markdown
Author

実行結果

2
3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment