search
HomeBackend DevelopmentPHP TutorialExample of using websocket in php_PHP tutorial

This article mainly introduces examples of using websocket in PHP. Friends who need it can refer to it

Below I drew a picture to demonstrate the handshake part when establishing a websocket connection between client and server. This part can be completed very easily in node, because the net module provided by node has already encapsulated the socket. Developers use At this time, you only need to consider the interaction of data without dealing with the establishment of the connection. However, PHP does not. From socket connection, establishment, binding, monitoring, etc., we need to operate these by ourselves, so it is necessary to take it out and talk about it. ​ php使用websocket示例      帮客之家 ​ ① and ② are actually an HTTP request and response, but what we get during the processing is an unparsed string. like: ​ The code is as follows: GET /chat HTTP/1.1 Host: server.example.com Origin: http://www.jb51.com ​ ​ The requests we usually see look like this. When this thing reaches the server, we can get this information directly through some code libraries. ​ 1. Processing websocket in php ​ WebSocket connections are actively initiated by the client, so everything must start from the client. The first step is to parse the Sec-WebSocket-Key string sent by the client. ​ The code is as follows: GET /chat HTTP/1.1 Host: server.example.com Upgrade: websocket Connection: Upgrade Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ== Origin: http://www.jb51.com Sec-WebSocket-Protocol: chat, superchat Sec-WebSocket-Version: 13 ​ ​ client request format ​ First, php establishes a socket connection and listens for port information. ​ 1. Establishment of socket connection ​ Regarding the establishment of sockets, I believe many people who have studied computer network in college know this. The following is a process of establishing a connection: ​ Example of using websocket in php_PHP tutorial ​ The code is as follows: // Create a socket socket $master = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); socket_set_option($master, SOL_SOCKET, SO_REUSEADDR, 1); socket_bind($master, $address, $port); socket_listen($master); ​ ​ Compared with node, the processing of this place is really troublesome. The above lines of code do not establish a connection, but these codes are what must be written to establish a socket. Since the processing process is slightly complicated, I wrote various processes into a class to facilitate management and calling.​ The code is as follows: //demo.php Class WS { var $master; // client connecting to server var $sockets = array(); // Socket management in different states var $handshake = false; // Determine whether to shake hands ​ function __construct($address, $port){ //Create a socket socket $this->master = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)               or die("socket_create() failed");         socket_set_option($this->master, SOL_SOCKET, SO_REUSEADDR, 1)               or die("socket_option() failed"); socket_bind($this->master, $address, $port)               or die("socket_bind() failed"); socket_listen($this->master, 2)                                     or die("socket_listen() failed"); ​ $this->sockets[] = $this->master; ​ // debug echo("Master socket : ".$this->master."n"); ​         while(true) { //Automatically select the socket for incoming messages. If it is a handshake, automatically select the host.                 $write = NULL;                 $except = NULL; ​ ​ ​ ​ socket_select($this->sockets, $write, $except, NULL); ​               foreach ($this->sockets as $socket) { ​ ​ ​ ​ ​ //Client that connects to the host                             if ($socket == $this->master){                                                                   $client = socket_accept($this->master);                                 if ($client sockets, $client);                                                                                                                                                                                                                               echo "connect clientn";                                                             } else {                                                                   $bytes = @socket_recv($socket,$buffer,2048,0);                                                                                                                                                                                                                                                                                                                                             if (!$this->handshake) { // If you do n’t shook hands, shook hands to respond first                                                          //doHandShake($socket, $buffer);                                                                                                                                                       echo "shakeHandsn";                        } else {                                                                                                                                     to                                         $buffer = decode($buffer);                                              //process($socket, $buffer);                                                                                                                                                      echo "send filen";                                                           }           } } } } } ​ ​ ​ The above code has been debugged by me, and there is no big problem. If you want to test it, you can type php /path/to/demo.php in the cmd command line; of course, the above is just a class, if you want to test it , you have to create a new instance.​ The code is as follows: $ws = new WS('localhost', 4000); ​ ​ The client code can be slightly simpler: ​ The code is as follows: var ws = new WebSocket("ws://localhost:4000"); ws.onopen = function(){ console.log("Handshake successful"); }; ws.onerror = function(){ console.log("error"); }; ​ ​ Running the server code, when the client connects, we can see: ​ Example of using websocket in php_PHP tutorial ​ 2. Extract Sec-WebSocket-Key information ​ The code is as follows: function getKey($req) { $key = null; if (preg_match("/Sec-WebSocket-Key: (.*)rn/", $req, $match)) { $key = $match[1]; } Return $key; } ​ ​ It’s relatively simple here. Direct regular matching. The websocket information header must contain Sec-WebSocket-Key, so we can match it quickly~ ​ 3. Encryption Sec-WebSocket-Key ​ The code is as follows: function encry($req){ $key = $this->getKey($req); $mask = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"; ​ Return base64_encode(sha1($key . '258EAFA5-E914-47DA-95CA-C5AB0DC85B11', true)); } ​ ​ ​ The SHA-1 encrypted string is then base64 encrypted. If the encryption algorithm is wrong, the client will directly report an error when checking: ​ Example of using websocket in php_PHP tutorial ​ 4. Reply Sec-WebSocket-Accept ​ The code is as follows: function dohandshake($socket, $req){ // Get encryption key $acceptKey = $this->encry($req); $upgrade = "HTTP/1.1 101 Switching Protocolsrn" . "Upgrade: websocketrn" . "Connection: Upgradern" . "Sec-WebSocket-Accept: " . $acceptKey . "rn" . "rn"; ​ //Write to socket socket_write(socket,$upgrade.chr(0), strlen($upgrade.chr(0))); // Mark that the handshake has been successful, and the next time the data is accepted, it will be in data frame format. $this->handshake = true; } ​ ​ ​ You must pay attention here. Every request and corresponding format has a blank line at the end, which is rn. I lost this thing when I started testing, and I struggled for a long time. Example of using websocket in php_PHP tutorial ​ ​ When the client successfully checks the key, the onopen function will be triggered: Example of using websocket in php_PHP tutorial ​ ​ 5. Data frame processing ​ The code is as follows: // Parse the data frame function decode($buffer) { $len = $masks = $data = $decoded = null; $len = ord($buffer[1]) & 127; ​ if ($len === 126) { $masks = substr($buffer, 4, 4); $data = substr($buffer, 8); } else if ($len === 127) { $masks = substr($buffer, 10, 4); $data = substr($buffer, 14); } else { $masks = substr($buffer, 2, 4); $data = substr($buffer, 6); } for ($index = 0; $index frame($msg); socket_write($client, $msg, strlen($msg)); } ​ ​ ​ Client code: ​ ​ The code is as follows: var ws = new WebSocket("ws://localhost:4000"); ws.onopen = function(){ console.log("Handshake successful"); }; ws.onmessage = function(e){ console.log("message:" + e.data); }; ws.onerror = function(){ console.log("error"); }; ws.send("Li Jing"); ​ ​ After sending data after connection, the server returns as it is: ​ Example of using websocket in php_PHP tutorial ​ ​ ​ 2. Pay attention to problems ​ 1. websocket version problem ​ The client's request during the handshake contains Sec-WebSocket-Version: 13, which is a version identifier. This is an upgraded version, and all current browsers use this version. The previous version was more troublesome in the data encryption part. It would send two keys: ​ The code is as follows: GET /chat HTTP/1.1 Host: server.example.com Upgrade: websocket Connection: Upgrade Origin: http://www.jb51.net Sec-WebSocket-Protocol: chat, superchat Sec-WebSocket-Key1: xxxx Sec-WebSocket-Key2: xxxx ​ ​ If it is this version (older and no longer in use), you need to obtain it through the following method ​ ​ The code is as follows: function encry($key1,$key2,$l8b){ //Get the numbers preg_match_all('/([d]+)/', $key1, $key1_num); preg_match_all('/([d]+)/' , $key2, $key2_num); ​ $key1_num = implode($key1_num[0]); $key2_num = implode($key2_num[0]); //Count spaces preg_match_all('/([ ]+)/', $key1, $key1_spc); preg_match_all('/([ ]+)/', $key2, $key2_spc); ​ if($key1_spc==0|$key2_spc==0){ $this->log("Invalid key");return; } //Some math $key1_sec = pack("N",$key1_num / $key1_spc); $key2_sec = pack("N",$key2_num / $key2_spc); ​ return md5($key1_sec.$key2_sec.$l8b,1); } ​ ​ ​ I can only complain endlessly about this verification method! Compared to nodeJs’s websocket operation mode: ​ ​ The code is as follows: //server program var crypto = require('crypto'); var WS = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'; require('net').createServer(function(o){ var key; o.on('data',function(e){ if(!key){ //shake hands key = e.toString().match(/Sec-WebSocket-Key: (.+)/)[1]; key = crypto.createHash('sha1').update(key + WS).digest('base64'); o.write('HTTP/1.1 101 Switching Protocolsrn'); o.write('Upgrade: websocketrn'); o.write('Connection: Upgradern'); o.write('Sec-WebSocket-Accept: ' + key + 'rn'); o.write('rn'); }else{ console.log(e); }; }); }).listen(8000); ​ ​ 2. Data frame parsing code ​ This article does not provide data frame parsing code such as decodeFrame. The format of the data frame is given in the previous article. Parsing is purely physical work.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/740820.htmlTechArticleThis article mainly introduces examples of using websocket in PHP. Friends who need it can refer to the picture below. The handshake part when establishing a websocket connection between client and server, this...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software