重複の可能性:
jQuery AJAX を使用して PHP 関数を呼び出す
私が作成したすべての関数を含む PHP ファイルがあります。知りたいのですが、Ajax を介して特定の関数を呼び出すにはどうすればよいですか?
重複の可能性:
jQuery AJAX を使用して PHP 関数を呼び出す
私が作成したすべての関数を含む PHP ファイルがあります。知りたいのですが、Ajax を介して特定の関数を呼び出すにはどうすればよいですか?
You could pass a get or post variable and use it to then using php call a specific function. WHat exactly are you trying to achieve ?
send the function name through GET method to the php page and then execute _GET value using call_user_func
使用できますcall_user_func()
:
$name = $_POST['function'];
if (in_array($name, $allowed_functions)) {
$result = call_user_func($name);
}
これは悪いデザインの匂いがしますが。なぜこれを行う必要があるのですか?