This article mainly introduces one of the swoole creation servers, which has certain reference value. Now I share it with everyone. Friends in need can refer to it
1. Create tcp server
First create a tcp server according to the document
<?php //创建服务器 参数分别是 //监听的地址 127.0.0.1 表示监听本机,0.0.0.0表示监听所有地址 //9501 端口号 这个你随便定都行只要没被占用过(netstat -an | grep 查看端口使用情况) 如果被占用就使用 命令 kill杀死进程 //SWOOLE_PROCESS 为多进程模式,一般这里不传值,默认为多进程 SWOOLE_BASE为基本模式 //SWOOLE_SOCK_TCP 也就是说创建tcp服务器 $serv=new swoole_server('127.0.0.1','9501',SWOOLE_PROCESS,SWOOLE_SOCK_TCP); //服务器设置参数 $serv->set([ 'worker_num'=>4, //worker进程数 一般为cpu数的 1-4倍 'max_request'=>10000, //worker进程在处理完n次请求后结束运行重建一个 ]); //这里 //当然还有很多设置的参数 文档传送门:https://wiki.swoole.com/wiki/page/13.html //监听连接进入事件(这里是一个闭包写法)连接后调用的函数 //$fd客户端连接的唯一标示 //$reactor_id 线程id 是一个自增数字,范围是1 ~ 1600万,fd超过1600万后会自动从1开始进行复用 $serv->on('connect', function ($serv, $fd, $reactor_id) { echo "Client: {$reactor_id} - {$fd}-Connect.\n"; }); //监听数据接收事件 //$data就是接收的数据 $serv->on('receive', function ($serv, $fd, $reactor_id, $data)) { $serv->send($fd, "Server: ".$data); echo '收到了数据'.$data; }); //监听连接关闭事件 $serv->on('close', function ($serv, $fd) { echo "Client: Close".$fd."\n"; }); //启动服务器 $serv->start();
ok let’s test php tcp.php to open the tcp server (if the port is occupied, kill the process occupying the port and turn off the use ctrl c, use ctrl z to suspend)
Open telnet (we need to open another terminal) to test whether it is successful, just enter eqqeq
Look at the tcp server again
Let’s sort out our thoughts when we see this:
Created the tcp server-> ;telnet connects to the server->tcp executes connect->telnent sends information->tcp listens to the receive event->telnent disconnects->tcp listens to the close event
question
1.The relationship between server and telnet
The relationship between server and client, one server corresponds to multiple telnet
2.$serv->send($fd, "Server: ".$data); What is the difference between directly outputting echo?
send is to send data to the other party (connected to my server). For example, if you use WeChat to chat with your friends, and you send a server: ".$data, then it is equivalent to sending the message Sent to your friend, and the echo output content is only for yourself.
3. What are threads and processes?
Equivalent to the threads in a factory (CPU) Multiple workshops (processes)
A workshop (process) has many workers (threads)
There is a toilet (shared memory) in the workshop, which can be shared by all workers, but you have to wait until the workers have finished using it before you can go in
We usually use PHP in a single process. For such a large factory, it is of course slow to use one workshop.
So we need multiple workshops (multi-process) and multiple employees (threads) to improve efficiency
Note:
Every time you modify the server script file, you must
close the process and reopen it for it to take effect
2. Create a udp server
1.TCP core ucp are all transport layer protocols, but UDP server is different from TCP server. UDP has no concept of connection. UDP consumes relatively small resources but is fast. After starting the Server, the client can directly send data packets to the 9502 port monitored by the Server without Connect.
2.udp is created in a way similar to tcp
//就是把最后一个参数改为 SWOOLE_SOCK_UDP $serv = new swoole_server("127.0.0.1", 9502, SWOOLE_PROCESS, SWOOLE_SOCK_UDP);
3.UDP server can be used Instead of telnet, use netcat -u to connect and test
nc installation:
yum -y install yum -y install nc.x86_64 Use it directlync -u 127.0.0.1 9502
4. Complete implementation
//创建Server对象,监听 127.0.0.1:9502端口,类型为SWOOLE_SOCK_UDP $serv = new swoole_server("127.0.0.1", 9502, SWOOLE_PROCESS, SWOOLE_SOCK_UDP); //udp没有 $serv->on connect的概念 //监听数据接收事件 $serv->on('Packet', function ($serv, $data, $clientInfo) { $serv->sendto($clientInfo['address'], $clientInfo['port'], "Server ".$data); var_dump($clientInfo); }); //启动服务器 $serv->start();
5. Test, we also open 2 terminals
udp server Here we printed $clientInfo
nc test server
ok The test is no problem^-^
The above is the entire content of this article, I hope It will be helpful for everyone’s learning. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
Swooled Learning - Introduction to Swoole
The above is the detailed content of How to use swoole to create a server (Part 1). For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 English version
Recommended: Win version, supports code prompts!

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
