phprpc远程调用报错,不知道什么原因
我在学习phprpc远程调用,按照网上的教程,发现报错:Incorrect response id (request id: 1, response id: ) n;好纠结啊,求教。贴出代码如下:
服务端,member.php
require_once 'jsonRPCServer.php';
/**
User: Administrator
Date: 2015/12/28
Time: 11:06
*/
class member
{
public function getName()
{ return 'hello word '; // 返回字符串}
}
// 服务端调用
$myExample = new member();
// 注入实例
jsonRPCServer::handle($myExample) or print 'no request';
客户端:client.php
/**
User: Administrator
Date: 2015/12/28
Time: 11:07*/require_once 'jsonRPCClient.php';//$url = 'http://localhost/phprpc/server.php';$url = 'http://localhost/phprpc/member.php';$myExample = new jsonRPCClient($url);echo '';print_r($myExample);// 客户端调用
try
{
$name = $myExample->getName();
echo $name;
} catch (Exception $e)
{
echo nl2br($e->getMessage()) . '
' . "n";
}
专注于为中小企业提供成都网站建设、成都做网站服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业西城免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了成百上千企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。
文章标题:phprpc远程调用报错,不知道什么原因
本文来源:http://myzitong.com/article/ijscep.html