search
HomeBackend DevelopmentPHP Tutorialphp simple socket_PHP tutorial

php simple socket_PHP tutorial

Jul 13, 2016 am 09:52 AM
phpsocketshareaccomplishtake overarticleuseofExampleSimpleenter

php simple socket

This article shares a simple socket example using php. Implement a TCP service that receives an input string, processes and returns this string to the client.

Generate a socket server

<?php
/*文件名:socket_server.php*/
// 设置一些基本的变量
$host="127.0.0.1";//Socket运行的服务器的IP地址
$port=1234;//Socket运行的服务器的端口,端口取值为1到65535之间的数字,前提是这个端口未被使用
// 设置超时时间,这里设置为永不超时,确保PHP在等待客户端连接时不会超时。
set_time_limit(0);
// 创建一个Socket,返回一个Socket句柄
$socket=socket_create(AF_INET,SOCK_STREAM,0) or die("Could not create socket\n");
//绑定Socket到指定的地址和端口
$result=socket_bind($socket,$host,$port) or die("Could not bind to socket\n");
// 开始监听外部连接
$result=socket_listen($socket,3) or die("Could not set up socket listener\n");
/******到这里,服务器除了等待来自客户端的连接请求外基本上什么也不做******/
// 另一个Socket来处理服务端与客户端的通信www.phpernote.com
$spawn=socket_accept($socket) or die("Could not accept incoming connection\n");
// 读取客户端的输入,当一个连接被建立后,服务器就会等待客户端发送一些输入信息,这些信息可以由socket_read()函数来获得,并把它赋值给PHP的$input变量
$input=socket_read($spawn,1024) or die("Could not read input\n");
//socker_read的第二个参数用以指定读入的字节数,你可以通过它来限制从客户端获取数据的大小
// 下面这不就不解释了,不知道的自己面壁去
$input=trim($input);
//处理客户端输入并返回结果,当客户端发来数据信息后,信息输出就要靠socket_write()函数来完成
$output=strrev($input) ."\n";//反转字符串,这里仅仅是为了更好的区分两条信息
socket_write($spawn,$output,strlen($output)) or die("Could not write output\n");
// 关闭sockets
socket_close($spawn);
socket_close($socket);

Tip: You should use your command prompt to run the above code. The reason is because a server will be generated here, not a Web page. If you try to run this script using a web browser, there's a good chance it will exceed the 30 second limit. You can use the code below to set an infinite run time, but it is recommended to use the command prompt to run.

set_time_limit(0);

A simple test of this script in your command prompt:

Php.exe socket_server.php

If you do not set the path of the php interpreter in the system environment variable, then you will need to specify the detailed path to php.exe. When you run the server, you can test the server by connecting to port 1234 via telnet.

There are three problems with the server side above:

1. It cannot accept multiple connections.

2. It only completes one command.

3. You cannot connect to this server through a web browser.

This first problem is easier to solve, you can use an application to connect to the server every time. But the next problem is that you need to use a Web page to connect to the server, which is more difficult. You can have your server accept the connection, write some data to the client (if it must write it), close the connection and wait for the next connection.

Improve it based on the previous code and generate the following code to make your new server:

<?php
$commonProtocol = getprotobyname("tcp");
$socket = socket_create(AF_INET, SOCK_STREAM, $commonProtocol);
socket_bind($socket, 'localhost', 1234); //socket_bind() 把socket绑定在一个IP地址和端口上
socket_listen($socket);
$buffer = "NO DATA";
while(true) {
	// Accept any connections coming in on this socket
	$connection = socket_accept($socket);//socket_accept() 接受一个Socket连接
	printf("Socket connected\r\n");
	// Check to see if there is anything in the buffer
	if($buffer != ""){
		printf("Something is in the buffer...sending data...\r\n");
		socket_write($connection, $buffer . "\r\n"); //socket_write() 写数据到socket缓存
		printf("Wrote to socket\r\n");
	}else {
		printf("No Data in the buffer\r\n");
	}
	// Get the input
	while($data = socket_read($connection, 1024, PHP_NORMAL_READ)){//socket_read() 读取指定长度的数据
		$buffer = $data;
		socket_write($connection, "Information Received\r\n");
		printf("Buffer: " . $buffer . "\r\n");
	}
	socket_close($connection); //socket_close() 关闭一个socket资源
	printf("Closed the socket\r\n\r\n");
}

What should this server do? It initializes a socket and opens a cache to send and receive data. It waits for a connection, and once a connection is made, it prints "Socket connected" on the server-side screen. This server checks the buffer and if there is data in the buffer, it sends the data to the connected computer. Then it sends an acceptance message for this data. Once it accepts the message, it saves the message to the data, makes the connected computer aware of the message, and finally closes the connection. When the connection is closed, the server starts processing the next connection.

Generate a socket client

Handling the second problem is easy. You need to generate a php page, connect to a socket, send some data to its cache and process it. Then you have the processed data waiting, and you can send your data to the server. On another client connection, it will process that data.

The following example demonstrates the use of socket:

<?php
// Create the socket and connect
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
$connection = socket_connect($socket,'localhost', 1234);
while($buffer = socket_read($socket, 1024, PHP_NORMAL_READ)) {
	if($buffer == "NO DATA") {
		echo("<p>NO DATA</p>");
		break;
	}else{
	// Do something with the data in the buffer
		echo("<p>Buffer Data: " . $buffer . "</p>");
	}
}
echo("<p>Writing to Socket</p>");
// Write some test data to our socket
if(!socket_write($socket, "SOME DATA\r\n")){
	echo("<p>Write failed</p>");
}
// Read any response from the socket phpernote.com
while($buffer = socket_read($socket, 1024, PHP_NORMAL_READ)){
	echo("<p>Data sent was: SOME DATA<br> Response was:" . $buffer . "</p>");
}
echo("<p>Done Reading from Socket</p>");

This example code demonstrates the client connecting to the server. The client reads the data. If this is the first connection to arrive in this loop, the server will send "NO DATA" back to the client. If this happens, the client is on top of the connection. The client sends its data to the server, the data is sent to the server, and the client waits for a response. Once the response is received, it writes the response to the screen.

Articles you may be interested in

  • php finds whether a value exists in an array (in_array(), array_search(), array_key_exists())
  • A simple example of php obtaining web content through socket
  • The simplest way to implement MVC development in PHP, thinking about the model
  • A simple case of php creating your own MVC framework, providing ideas, for reference only
  • php simple method to calculate weight (suitable for lottery applications)
  • Simple usage of PHP's Try, throw and catch
  • PHP method to convert simplified Chinese characters to traditional Chinese
  • PHP uses curl to implement get and post requests

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1005593.htmlTechArticlephp simple socket This article shares a simple socket example, using php. Implement a TCP service that receives an input string, processes and returns this string to the client. Produce a...
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's Current Status: A Look at Web Development TrendsPHP's Current Status: A Look at Web Development TrendsApr 13, 2025 am 12:20 AM

PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP vs. Other Languages: A ComparisonPHP vs. Other Languages: A ComparisonApr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP vs. Python: Core Features and FunctionalityPHP vs. Python: Core Features and FunctionalityApr 13, 2025 am 12:16 AM

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHP: A Key Language for Web DevelopmentPHP: A Key Language for Web DevelopmentApr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP: The Foundation of Many WebsitesPHP: The Foundation of Many WebsitesApr 13, 2025 am 12:07 AM

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.

Beyond the Hype: Assessing PHP's Role TodayBeyond the Hype: Assessing PHP's Role TodayApr 12, 2025 am 12:17 AM

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

What are Weak References in PHP and when are they useful?What are Weak References in PHP and when are they useful?Apr 12, 2025 am 12:13 AM

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

Explain the __invoke magic method in PHP.Explain the __invoke magic method in PHP.Apr 12, 2025 am 12:07 AM

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot 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

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools