Home Backend Development PHP Tutorial How to implement php rpc?

How to implement php rpc?

May 18, 2019 pm 01:27 PM

How to implement php rpc?

1. What is rpc

RPC stands for Remote Procedure Call, which translates to "remote procedure call" . Currently, mainstream platforms support various remote calling technologies to meet remote communication and mutual calls between different systems in a distributed system architecture. The application scenarios of remote calling are extremely wide, and the implementation methods are also various.

2. From the level of communication protocol

Based on HTTP protocol (such as text-based SOAP (XML), Rest (JSON), based on binary Hessian (Binary) )
Based on TCP protocol (usually with the help of high-performance network frameworks such as Mina and Netty)

3. From different development languages ​​and platform levels

A language or platform-specific supported communication technology (such as Java platform's RMI, .NET platform Remoting)
Technology that supports cross-platform communication (such as HTTP Rest, Thrift, etc.)

4. From Let’s look at the calling process

Synchronous communication call (synchronous RPC)
Asynchronous communication call (MQ, asynchronous RPC)

5. Several common communication methods

Remote data sharing (for example: sharing remote files, sharing databases, etc. to achieve communication between different systems)
Message Queue
RPC (Remote Procedure Call)

6 .php implements simple rpc

Directory structure

How to implement php rpc?

rpc server

<?php/**
 * User: yuzhao
 * CreateTime: 2018/11/15 下午11:46
 * Description: Rpc服务端
 */class RpcServer {    /**
     * User: yuzhao
     * CreateTime: 2018/11/15 下午11:51
     * @var array
     * Description: 此类的基本配置
     */
    private $params = [        &#39;host&#39;  => &#39;&#39;,  // ip地址,列出来的目的是为了友好看出来此变量中存储的信息
        &#39;port&#39;  => &#39;&#39;, // 端口
        &#39;path&#39;  => &#39;&#39; // 服务目录
    ];    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:14
     * @var array
     * Description: 本类常用配置
     */
    private $config = [        &#39;real_path&#39; => &#39;&#39;,        &#39;max_size&#39;  => 2048 // 最大接收数据大小
    ];    /**
     * User: yuzhao
     * CreateTime: 2018/11/15 下午11:50
     * @var nul
     * Description:
     */
    private $server = null;    /**
     * Rpc constructor.
     */
    public function __construct($params)
    {        $this->check();        $this->init($params);
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:0
     * Description: 必要验证
     */
    private function check() {        $this->serverPath();
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/15 下午11:48
     * Description: 初始化必要参数
     */
    private function init($params) {        // 将传递过来的参数初始化
        $this->params = $params;        // 创建tcpsocket服务
        $this->createServer();
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:0
     * Description: 创建tcpsocket服务

     */
    private function createServer() {        $this->server = stream_socket_server("tcp://{$this->params[&#39;host&#39;]}:{$this->params[&#39;port&#39;]}", $errno,$errstr);        if (!$this->server) exit([
            $errno,$errstr
        ]);
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/15 下午11:57
     * Description: rpc服务目录
     */
    public function serverPath() {
        $path = $this->params[&#39;path&#39;];
        $realPath = realpath(__DIR__ . $path);        if ($realPath === false ||!file_exists($realPath)) {            exit("{$path} error!");
        }        $this->config[&#39;real_path&#39;] = $realPath;
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/15 下午11:51
     * Description: 返回当前对象
     */
    public static function instance($params) {        return new RpcServer($params);
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:06
     * Description: 运行
     */
    public function run() {        while (true) {
            $client = stream_socket_accept($this->server);            if ($client) {                echo "有新连接\n";
                $buf = fread($client, $this->config[&#39;max_size&#39;]);
                print_r(&#39;接收到的原始数据:&#39;.$buf."\n");                // 自定义协议目的是拿到类方法和参数(可改成自己定义的)
                $this->parseProtocol($buf,$class, $method,$params);                // 执行方法
                $this->execMethod($client, $class, $method, $params);                //关闭客户端
                fclose($client);                echo "关闭了连接\n";
            }
        }
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:19
     * @param $class
     * @param $method
     * @param $params
     * Description: 执行方法
     */
    private function execMethod($client, $class, $method, $params) {        if($class && $method) {            // 首字母转为大写
            $class = ucfirst($class);
            $file = $this->params[&#39;path&#39;] . &#39;/&#39; . $class . &#39;.php&#39;;            //判断文件是否存在,如果有,则引入文件
            if(file_exists($file)) {                require_once $file;                //实例化类,并调用客户端指定的方法
                $obj = new $class();                //如果有参数,则传入指定参数
                if(!$params) {
                    $data = $obj->$method();
                } else {
                    $data = $obj->$method($params);
                }                // 打包数据
                $this->packProtocol($data);                //把运行后的结果返回给客户端
                fwrite($client, $data);
            }
        } else {
            fwrite($client, &#39;class or method error&#39;);
        }
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:10
     * Description: 解析协议
     */
    private function parseProtocol($buf, &$class, &$method, &$params) {
        $buf = json_decode($buf, true);
        $class = $buf[&#39;class&#39;];
        $method = $buf[&#39;method&#39;];
        $params = $buf[&#39;params&#39;];
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:30
     * @param $data
     * Description: 打包协议
     */
    private function packProtocol(&$data) {
        $data = json_encode($data, JSON_UNESCAPED_UNICODE);
    }

}

RpcServer::instance([    &#39;host&#39;  => &#39;127.0.0.1&#39;,    &#39;port&#39;  => 8888,    &#39;path&#39;  => &#39;./api&#39;])->run();
Copy after login

rpc client

<?php/**
 * User: yuzhao
 * CreateTime: 2018/11/16 上午12:2
 * Description: Rpc客户端
 */class RpcClient {    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:21
     * @var array
     * Description: 调用的地址
     */
    private $urlInfo = array();    /**
     * RpcClient constructor.
     */
    public function __construct($url)
    {        $this->urlInfo = parse_url($url);
    }    /**
     * User: yuzhao
     * CreateTime: 2018/11/16 上午12:2
     * Description: 返回当前对象
     */
    public static function instance($url) {        return new RpcClient($url);
    }    public function __call($name, $arguments)
    {        // TODO: Implement __call() method.
        //创建一个客户端
        $client = stream_socket_client("tcp://{$this->urlInfo[&#39;host&#39;]}:{$this->urlInfo[&#39;port&#39;]}", $errno, $errstr);        if (!$client) {            exit("{$errno} : {$errstr} \n");
        }
        $data = [            &#39;class&#39;  => basename($this->urlInfo[&#39;path&#39;]),            &#39;method&#39; => $name,            &#39;params&#39; => $arguments
        ];        //向服务端发送我们自定义的协议数据
        fwrite($client, json_encode($data));        //读取服务端传来的数据
        $data = fread($client, 2048);        //关闭客户端
        fclose($client);        return $data;
    }
}
$cli = new RpcClient(&#39;http://127.0.0.1:8888/test&#39;);echo $cli->tuzisir1()."\n";echo $cli->tuzisir2(array(&#39;name&#39; => &#39;tuzisir&#39;, &#39;age&#39; => 23));
Copy after login

Service file

<?php/**
 * User: yuzhao
 * CreateTime: 2018/11/16 上午12:28
 * Description:
 */class Test {    public function tuzisir1() {        return &#39;我是无参方法&#39;;
    }    public function tuzisir2($params) {        return $params;
    }
}
Copy after login

Effect

How to implement php rpc?

##7. Precautions for RPC

Performance: There are several aspects that affect RPC performance:

1. Serialization/deserialization framework
2. Network protocol, network model, thread model, etc.

Security

RPC security mainly lies in the authentication and access control support of the service interface.

Cross-platform

Across different operating systems, different programming languages ​​and platforms.

The above is the detailed content of How to implement php rpc?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles