是否有像asp.net web服务这样的URL调用php web服务? 在asp.net Web服务中,我们可以使用url示例调用方法:
www.example.com/webservice.asmx?method=hello&name=world
答案 0 :(得分:0)
我想你想做那样的事情:
<?php
function hello($arg) {
echo "hello method : $arg";
}
function hello2($arg) {
echo "hello2 method : $arg";
}
$method = $_GET['method'];
$name = $_GET['name'];
call_user_func($method, $name);
?>