Home> PHP Framework> Swoole> body text

How to use swoole extension

Release: 2019-12-23 14:27:45
Original
2536 people have browsed it

How to use swoole extension

Swoole is an extension of PHP that can be installed and enabled through PHP extension.

Local installation

Laradock

If you install it locally, taking Laradock as an example, you need to add the following two lines in .env in the laradock directory Set the configuration value to true:

WORKSPACE_INSTALL_SWOOLE=true PHP_FPM_INSTALL_SWOOLE=true
Copy after login

Then run docker-compose build php-fpm workspace to rebuild the Docker container. After the build is completed, restart the two containers, enter the workspace container, and run php -m to check whether Swoole is installed successfully. , if the extension list contains swoole, the installation is successful.

Windows/Mac

If it is installed on a local Windows/Mac system, directly execute the following command to install the interface:

pecl install swoole
Copy after login

Simple use:

HTTP Server

First we write a simple HTTP server through Swoole, create a http_server.php file in the test directory, and write the file code as follows:

on("start", function ($server) { echo "Swoole http server is started at http://127.0.0.1:9501\n"; }); // 向服务器发送请求时返回响应 // 可以获取请求参数,也可以设置响应头和响应内容 $server->on("request", function ($request, $response) { $response->header("Content-Type", "text/plain"); $response->end("Hello World\n"); }); // 启动 HTTP 服务器 $server->start();
Copy after login

In this way, a most basic The HTTP server is completed. Its working principle is similar to that of industrial-grade Apache and Nginx servers, except that it provides the simplest server monitoring and response functions. We enable this server in the terminal:

How to use swoole extension

This means that the server has been started and is listening for requests. Go to http://127.0.0.1:9501 in the browser to get the server output response content:

How to use swoole extensionRecommended learning:swoole video tutorial

The above is the detailed content of How to use swoole extension. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!