用url调用php web服务

时间:2015-02-11 15:52:22

标签: php asp.net web-services

是否有像asp.net web服务这样的URL调用php web服务? 在asp.net Web服务中,我们可以使用url示例调用方法:

www.example.com/webservice.asmx?method=hello&name=world

1 个答案:

答案 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);
?>