符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
RPC(Remote Procedure Call)—远程过程调用,它是一种通过网络从远程计算机程序上请求服务,而不需要了解底层网络技术的协议。
专业领域包括做网站、网站设计、商城网站建设、微信营销、系统平台开发, 与其他网站设计及系统开发公司不同,创新互联的整合解决方案结合了帮做网络品牌建设经验和互联网整合营销的理念,并将策略和执行紧密结合,为客户提供全网互联网整合方案。
运行时,一次客户机对服务器的RPC调用,其内部操作大致有如下十步:
- 文件结构
zrj@zrj:~/www/zhangrenjie_test/test/rpc$ tree
├── Client.php
└── Provider
├── index.php
└── Services
└── UserService.php
- 客户端Client.php
class Client
{
private $serviceUrl;
private $serviceName;
private $rpcConfig = [
'UserService' => 'http://127.0.0.1:8081',
];
public function __construct($serviceName)
{
if (array_key_exists($serviceName, $this->rpcConfig)) {
$this->serviceUrl = $this->rpcConfig[$serviceName];
$this->serviceName = $serviceName;
}
}
// __call() is triggered when invoking inaccessible methods in an object context.
//调用不可访问的方法
public function __call($actionName, $arguments)
{
$content = json_encode($arguments);
$options['http'] = [
'timeout' => 5,
'method' => 'POST',
'header' => 'Content-type:applicaion/x-www-form-urlencoode',
'content' => $content,
];
//创建资源流上下文
$context = stream_context_create($options);
$get = [
'service_name' => $this->serviceName,
'action_name' => $actionName
];
$serviceUrl = $this->serviceUrl . '?' . http_build_query($get);
$result = file_get_contents($serviceUrl, false, $context);
return json_decode($result, true);
}
}
$userService = new Client('UserService');
$result=$userService->getUserInfo(random_int(1,10));
var_dump($result);
步骤:
- 服务提供者(Service Provider)的实现
Provider目录为演示的服务提供者的总目录,index.php为管理调度服务的入口。
Provider\Services目录为所有服务类目录。
服务调度入口:index.php
namespace rpc\Provider;
require_once './Services/UserService.php';
use rpc\Provider\Services\{
UserService
};
$serviceName = trim($_GET['service_name']);
$serviceAction = trim($_GET['action_name']);
$argv = file_get_contents("php://input");
if (empty($serviceName) || empty($serviceAction)) die('paramas is missing');
if (!empty($argv)) {
$argv = json_decode($argv, true);
}
$result = call_user_func_array([$serviceName, $serviceAction], $argv);
echo json_encode($result);
User服务:UserService.php
namespace rpc\Provider\Services;
class UserService
{
public static function getUserInfo(int $uid): array
{
return [
'id' => $uid,
'user_name' => 'jack_' . $uid,
];
}
}
开启服务:对外提供服务远程调用地址(http://127.0.0.1:8081)。
#这里我们利用PHP自带的cli模式开启服务
php -S 127.0.0.1:8080 -t /www/zhangrenjie_test/test/rpc/Provider
至此,大功告成。
了解php开启服务,请参照没有第三方web服务,怎么运行php?