search
HomeBackend DevelopmentPHP TutorialExplain in simple terms: PHP socket communication principle

You are not unfamiliar with the words TCP/IP, UDP, and Socket programming, are you? With the development of network technology, these words are flooding our ears. So I want to ask:

1. What are TCP/IP and UDP?

2. Where is the Socket?

3. What is Socket?

4. Can you use them?

What are TCP/IP and UDP?

TCP/IP (Transmission Control Protocol/Internet Protocol) is an industrial standard protocol set designed for wide area networks (WANs).

UDP (User Data Protocol) is a protocol corresponding to TCP. It is a member of the TCP/IP protocol suite.

Here is a diagram showing the relationship between these protocols.

Explain in simple terms: PHP socket communication principle

The TCP/IP protocol suite includes the transport layer, network layer, and link layer. Now you know the relationship between TCP/IP and UDP.

Where is Socket?

In Figure 1, we do not see the shadow of Socket, so where is it? Let’s let pictures speak for themselves.

Explain in simple terms: PHP socket communication principle

It turns out that the Socket is here.

What is Socket?

Socket is an intermediate software abstraction layer for communication between the application layer and the TCP/IP protocol family. It is a set of interfaces. In the design mode, Socket is actually a facade mode, which hides the complex TCP/IP protocol family behind the Socket interface. For users, a set of simple interfaces is all, allowing Socket to organize data to meet the specified requirements. protocol.

Will you use them?

Predecessors have done a lot for us, and communication between networks has become much simpler, but after all, there is still a lot of work to be done. When I heard about Socket programming before, I thought it was relatively advanced programming knowledge, but as long as we understand the working principle of Socket programming, the mystery will be lifted.

A scene from life. If you want to call a friend, dial the number first. When the friend hears the ringing tone, he picks up the phone. At this time, you and your friend are connected and you can talk. When the communication is over, hang up the phone to end the conversation. Scenes in life explain how this works. Maybe the TCP/IP protocol family was born in life, but this is not necessarily the case.

Explain in simple terms: PHP socket communication principle

Let’s start with the server side. The server first initializes the Socket, then binds to the port, listens to the port, calls accept to block, and waits for the client to connect. At this time, if a client initializes a Socket and then connects to the server (connect), if the connection is successful, the connection between the client and the server is established. The client sends a data request, the server receives the request and processes the request, then sends the response data to the client, the client reads the data, and finally closes the connection, and the interaction ends.

socket related functions:

---------------------------------- -------------------------------------------------- -------------

socket_accept() Accept a Socket connection

socket_bind() Bind the socket to an IP address and port

socket_clear_error() Clear the socket error or the last error code

socket_close() Close a socket resource

socket_connect() Start a socket connection

socket_create_listen () Open a socket to listen on the specified port

socket_create_pair() Generate a pair of undifferentiated sockets into an array

socket_create() Generate a socket, which is equivalent to generating a socket data structure

socket_get_option() Get the socket option

socket_getpeername() Get the ip address of a remote similar host

socket_getsockname() Get the ip address of the local socket

socket_iovec_add () Add a new vector to a scatter/aggregate array

socket_iovec_alloc() This function creates an iovec data structure capable of sending, receiving, reading and writing

socket_iovec_delete() Delete an already allocated iovec

socket_iovec_fetch() Returns the data of the specified iovec resource

socket_iovec_free() Releases an iovec resource

socket_iovec_set() Sets the new value of iovec data

socket_last_error() Get the last error code of the current socket

socket_listen() Listen to all connections from the specified socket

socket_read() Read the data of the specified length

socket_readv( ) Read the data from the scattered/aggregated array

socket_recv() End the data from the socket to the cache

socket_recvfrom() Accept the data from the specified socket, if not specified, the current socket will be defaulted

socket_recvmsg() Receive messages from iovec

socket_select() Multiple selection

socket_send() This function sends data to the connected socket

socket_sendmsg() Sends a message to the socket

socket_sendto() Sends a message to the socket with the specified address

socket_set_block() Set the socket to block mode

socket_set_nonblock() Set the socket to non-block mode

socket_set_option() Set the socket option

socket_shutdown() This function allows You close reading, writing, or the specified socket

socket_strerror() returns the detailed error with the specified error number

socket_write() writes data to the socket cache

socket_writev() writes Data to scattered/aggregated array

Case 1: socket communication demonstration

Server side:

<?php
//确保在连接客户端时不会超时
set_time_limit(0);
 
$ip = &#39;127.0.0.1&#39;;
$port = 1935;
 
/*
 +-------------------------------
 *  @socket通信整个过程
 +-------------------------------
 *  @socket_create
 *  @socket_bind
 *  @socket_listen
 *  @socket_accept
 *  @socket_read
 *  @socket_write
 *  @socket_close
 +--------------------------------
 */
 
/*----------------  以下操作都是手册上的  -------------------*/
if(($sock = socket_create(AF_INET,SOCK_STREAM,SOL_TCP)) < 0) {
  echo "socket_create() 失败的原因是:".socket_strerror($sock)."\n";
}
 
if(($ret = socket_bind($sock,$ip,$port)) < 0) {
  echo "socket_bind() 失败的原因是:".socket_strerror($ret)."\n";
}
 
if(($ret = socket_listen($sock,4)) < 0) {
  echo "socket_listen() 失败的原因是:".socket_strerror($ret)."\n";
}
 
$count = 0;
 
do {
  if (($msgsock = socket_accept($sock)) < 0) {
    echo "socket_accept() failed: reason: " . socket_strerror($msgsock) . "\n";
    break;
  } else {
     
    //发到客户端
    $msg ="测试成功!\n";
    socket_write($msgsock, $msg, strlen($msg));
     
    echo "测试成功了啊\n";
    $buf = socket_read($msgsock,8192);
     
     
    $talkback = "收到的信息:$buf\n";
    echo $talkback;
     
    if(++$count >= 5){
      break;
    };
     
   
  }
  //echo $buf;
  socket_close($msgsock);
 
} while (true);
 
socket_close($sock);
?>

This is the server-side code of the socket. Then run cmd, pay attention to the storage path of your own program.

Explain in simple terms: PHP socket communication principle

No response, the server program has started running and the port has started listening. You can check the port status by running netstat -ano. Mine is port 1935

and you can see that the port is already in the LISTENING state. Next we only need to run the client program to connect. Upload the code

<?php
error_reporting(E_ALL);
set_time_limit(0);
echo "<h2 id="TCP-IP-nbsp-Connection">TCP/IP Connection</h2>\n";
 
$port = 1935;
$ip = "127.0.0.1";
 
/*
 +-------------------------------
 *  @socket连接整个过程
 +-------------------------------
 *  @socket_create
 *  @socket_connect
 *  @socket_write
 *  @socket_read
 *  @socket_close
 +--------------------------------
 */
 
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($socket < 0) {
  echo "socket_create() failed: reason: " . socket_strerror($socket) . "\n";
}else {
  echo "OK.\n";
}
 
echo "试图连接 &#39;$ip&#39; 端口 &#39;$port&#39;...\n";
$result = socket_connect($socket, $ip, $port);
if ($result < 0) {
  echo "socket_connect() failed.\nReason: ($result) " . socket_strerror($result) . "\n";
}else {
  echo "连接OK\n";
}
 
$in = "Ho\r\n";
$in .= "first blood\r\n";
$out = &#39;&#39;;
 
if(!socket_write($socket, $in, strlen($in))) {
  echo "socket_write() failed: reason: " . socket_strerror($socket) . "\n";
}else {
  echo "发送到服务器信息成功!\n";
  echo "发送的内容为:<font color=&#39;red&#39;>$in</font> <br>";
}
 
while($out = socket_read($socket, 8192)) {
  echo "接收服务器回传信息成功!\n";
  echo "接受的内容为:",$out;
}
 
 
echo "关闭SOCKET...\n";
socket_close($socket);
echo "关闭OK\n";
?>

Explain in simple terms: PHP socket communication principle

Explain in simple terms: PHP socket communication principle

The client has now connected to the server.

Case 2: Detailed code explanation

// 设置一些基本的变量
$host = "192.168.1.99";
$port = 1234;
// 设置超时时间
set_time_limit(0);
// 创建一个Socket
$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not createsocket\n");
//绑定Socket到端口
$result = socket_bind($socket, $host, $port) or die("Could not bind tosocket\n");
// 开始监听链接
$result = socket_listen($socket, 3) or die("Could not set up socketlistener\n");
// accept incoming connections
// 另一个Socket来处理通信
$spawn = socket_accept($socket) or die("Could not accept incomingconnection\n");
// 获得客户端的输入
$input = socket_read($spawn, 1024) or die("Could not read input\n");
// 清空输入字符串
$input = trim($input);
//处理客户端输入并返回结果
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("Could not write
output\n");
// 关闭sockets
socket_close($spawn);
socket_close($socket);

The following is a detailed description of each step:

1. The first step is to establish two variables to save the server where the Socket is running. IP address and port. You can set it to your own server and port (this port can be a number between 1 and 65535), provided that this port is not in use.

// 设置两个变量
$host = "192.168.1.99";
$port = 1234;

2. You can use the set_time_out() function on the server side to ensure that PHP will not time out while waiting for the client to connect.

// 超时时间
set_time_limit(0);

3. Based on the previous ones, it is time to use socket_creat () function creates a Socket - this function returns a Socket handle, which will be used in all subsequent functions.

// 创建Socket
$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create
socket\n");

The first parameter "AF_INET" is used to specify the domain name ;

The second parameter "SOCK_STREM" tells the function what type of Socket will be created (TCP type in this example)

So, if you want to create a UDP Socket If so, you can use the following code:

// 创建 socket
$socket = socket_create(AF_INET, SOCK_DGRAM, 0) or die("Could not create
socket\n");

4. Once a Socket handle is created, the next step is to specify or bind it to the specified address and port. This can be done through socket_bind () function to complete.

// 绑定 socket to 指定地址和端口
$result = socket_bind($socket, $host, $port) or die("Could not bind to
socket\n");

5. After the Socket is created and bound to a port, you can start listening for external connections. PHP allows you to use socket_listen() function to start a listener, and you can specify a number (in this case the second parameter: 3)

// 开始监听连接
$result = socket_listen($socket, 3) or die("Could not set up socket
listener\n");

6. Until now, your server does nothing but wait for messages from clients Basically nothing is done except the client's connection request. Once a client connection is received, the socket_accept() function comes into play. It receives the connection request and calls another sub-Socket to handle the client-server information.

//接受请求链接
// 调用子socket 处理信息
$spawn = socket_accept($socket) or die("Could not accept incoming
connection\n");

This subsocket can now be used for subsequent client-server communication.

7. When a connection is established, the server will wait for the client The terminal sends some input information. This information can be obtained by the socket_read() function and assigned to the $input variable of PHP.

// 读取客户端输入
$input = socket_read($spawn, 1024) or die("Could not read input\n");

The second parameter of socker_read is used to Specify the number of bytes to read, you can use it to limit the size of data obtained from the client.

Note: The socket_read function will keep reading the shell client data until it encounters \n, \t or \ 0 characters. The PHP script regards this character as the end of the input.

8. Now the server must process the data sent by the client (in this example, the processing only includes the input and Back to the client). This part can be completed by the socket_write() function (making it possible to send a data stream back to the client through the communication socket)

// 处理客户端输入并返回数据
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("Could not write
output\n");

9. Once output is returned to the client, the parent/child socket should be terminated through the socket_close() function

// 关闭 sockets
socket_close($spawn);
socket_close($socket);

The above is the entire content of this article, I hope it will be helpful to everyone's learning, and I hope Please support PHP Chinese website.

For more in-depth explanations: PHP socket communication principles and related articles, please pay attention to the PHP Chinese website!


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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.