## PHP
TCP 服务是基于 Socket 开发的,因此客户端我们能直接使用 PHP 的 Socket 操作方法连接,得益于 [Swoole 的 Hook](https://wiki.swoole.com/wiki/page/p-runtime.html) 技术 (mix 默认已经开启 Hook) ,PHP 的原生 Socket 操作可在协程中使用。
- 将下面代码保存为 `client.php`:
> 其中 EOF 要与 TCP 服务器的 [StartCommand:class](https://github.com/mix-php/mix-skeleton/tree/v2.1/app/Tcp/Commands/StartCommand.php#L40) 中一至
~~~
<?php
/**
* Class JsonRpcTcpClient
* @author liu,jian <coder.keda@gmail.com>
*/
class JsonRpcTcpClient
{
/**
* @var resource
*/
public $socket;
/**
* @var string
*/
public $eof = "\n";
/**
* @var int
*/
public $timeout = 5;
/**
* @var int
*/
public $lineMaxLength = 4096;
/**
* JsonRpcTcpClient constructor.
* @param string $host
* @param int $port
*/
public function __construct(string $host, int $port)
{
$socket = stream_socket_client("tcp://{$host}:{$port}", $errno, $errstr, $this->timeout);
if (!$socket) {
throw new \RuntimeException("JSON-RPC tcp client connection failed, [$errno] {$errstr}");
}
$this->socket = $socket;
}
/**
* 执行方法
* @param string $method
* @param array $params
* @param int $id
* @return array
*/
public function call(string $method, array $params, int $id = 0)
{
$ret = fwrite($this->socket, json_encode([
'method' => $method,
'params' => $params,
'id' => $id,
]) . $this->eof);
if ($ret === false) {
throw new \RuntimeException('JSON-RPC tcp client write failed.');
}
stream_set_timeout($this->socket, $this->timeout);
$data = stream_get_line($this->socket, $this->lineMaxLength, $this->eof);
if ($data === false) {
throw new \RuntimeException('JSON-RPC tcp client read failed.');
}
return json_decode($data, true);
}
/**
* Destruct
*/
public function __destruct()
{
// TODO: Implement __destruct() method.
fclose($this->socket);
}
}
// 执行RPC
$client = new JsonRpcTcpClient('127.0.0.1', 9503);
$result = $client->call('foo.bar', [], 123);
var_dump($result);
~~~
**1. 启动服务器**
~~~
php bin/mix.php tcp:start
~~~
**2. 执行 `client.php`**
~~~
php client.php
~~~
接收到加入成功的消息:
~~~
[root@localhost data]# php client.php
array(4) {
["jsonrpc"]=>
string(3) "2.0"
["error"]=>
NULL
["result"]=>
array(1) {
[0]=>
string(13) "Hello, World!"
}
["id"]=>
int(123)
}
~~~
- 欢迎使用 MixPHP
- 安装说明
- 全栈安装
- Phar 开发安装
- 新手教程
- 命令行常识
- 进程管理
- 热更新
- 全局变量
- 入门须知
- 命名空间
- 自动加载
- 入口文件
- 增改应用
- 核心功能
- 配置 (manifest.php)
- 协程
- 什么是协程
- 开启协程
- PHP Stream Hook
- xgo + Channel
- WaitGroup + xdefer
- 连接池
- 协程池
- 定时器
- 依赖注入
- 事件调度
- 命令行
- 简介
- Application
- 创建命令
- 命令参数
- 打印与颜色
- 守护进程
- 后台运行
- Web/API 应用
- 简介
- 服务器
- 路由
- 中间件
- 请求
- 文件上传
- 响应
- 控制器
- 视图
- Auth
- Session
- 客户端
- GuzzleHttp
- 调试与错误
- 安全建议
- WebSocket 应用
- 简介
- 服务器
- 客户端
- JavaScript
- Swoole
- nginx代理
- 60s无消息断线
- TCP 应用
- 简介
- 服务器
- 客户端
- Telnet
- PHP
- Swoole
- UDP 应用
- 简介
- 服务器
- 客户端
- NC
- Swoole
- Sync Invoke 同步调用
- 简介
- 服务器
- 客户端
- 公共组件
- 验证器
- 验证器定义
- 验证规则
- 静态调用
- 日志
- 缓存
- 数据库
- Database
- ConnectionPool
- Connection
- QueryBuilder
- ExecutedEvent
- Redis
- ConnectionPool
- Connection
- CalledEvent
- 常见问题
- 如何利用CPU多核
- 连接多个数据库
- 使用主从数据库
- 如何设置跨域
- form-data 上传文件失败
- 输出大于2M的文件失败 (xlsx)
- 如何接入EasyWeChat
- 升级指导
- 不兼容修改-001
- 不兼容修改-002
- 不兼容修改-003