-3

重複の可能性:
jQuery AJAX を使用して PHP 関数を呼び出す

私が作成したすべての関数を含む PHP ファイルがあります。知りたいのですが、Ajax を介して特定の関数を呼び出すにはどうすればよいですか?

4

3 に答える 3

1

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 ?

于 2013-01-28T11:01:41.733 に答える
0

send the function name through GET method to the php page and then execute _GET value using call_user_func

http://php.net/manual/en/function.call-user-func.php

于 2013-01-28T11:02:13.167 に答える
0

使用できますcall_user_func()

$name = $_POST['function'];

if (in_array($name, $allowed_functions)) {
    $result = call_user_func($name);
}

これは悪いデザインの匂いがしますが。なぜこれを行う必要があるのですか?

于 2013-01-28T11:02:46.443 に答える