Table of Contents
Detailed tutorial on the installation method of PHP's swoole extension, phpswoole installation method
Home Backend Development PHP Tutorial Detailed tutorial on how to install PHP's swoole extension, phpswoole installation method_PHP tutorial

Detailed tutorial on how to install PHP's swoole extension, phpswoole installation method_PHP tutorial

Jul 12, 2016 am 08:52 AM
php swoole Install Expand

Detailed tutorial on the installation method of PHP's swoole extension, phpswoole installation method

Swoole supports PHP 5.3.10 or above, so please install PHP 5.3.10 or above before installing Swoole. Now let’s introduce the installation and configuration method of PHP under Windows.

Software version: php-5.3.1-Win32-VC6-x86.zip

This does not require additional installation of .net libraries, so this is used. Others can be used.

1.PHP installation

Use the green method to download the Zip file and extract it.

2. Configuration

In the root directory of the decompression, find php.ini-development, which is a configuration file for the development environment; there is also a php.ini-production, which is a configuration file for the production environment. Using php.in-development, make a copy and rename it to php.ini. Start editing.

Location registe_globals =Off;

It is recommended not to open it. The difference is that this value is used to open global variables, such as the value sent from the form. If this value is set to "Off", you can only use "$_POST['variable name'], $ _GET['variable name']" and so on to get the sent value. If it is set to "On", you can directly use "$variable name" to get the sent value. Of course, it is safer to set it to "Off". No one can easily intercept the data transmitted between web pages. Whether this value is changed to "On" depends on your own feeling. Is safety or convenience more important?

In order to enable php to call other modules, you can search with the extension keyword and locate as follows. Remove the semicolon before the option to open support for this module.

The more modules loaded, it will occupy slightly more resources, which can be ignored. For example, to enable mysql support, find the following

;extension=php_mysql.dll

Just remove the ";" comment in front.

All modules are placed in the ext directory under the PHP decompression directory and can be enabled as needed.

Error when loading module:

Sometimes when starting Apache, the error "The specified module cannot be found" will be prompted. This is because the location of these module files is not specified. Locate the keyword "extension_dir" and modify the directory for your PHP module under Windows.

For example, if my PHP directory is in D:PHP, then configure

exession_dir = "D:PHPext"

This way there will be no error when starting Apache.

Here is the simplest method to directly specify the PHP installation path and the ext path inside it to the Windows system path - right-click on "My Computer", "Properties", select the "Advanced" tab, and click Select "Environment Variables", find the "Path" variable under "System Variables", select it, double-click or click "Edit", and add ";D:php;D:phpext" to the end of the original value. Of course, the "D:php" is my installation directory. You need to change it to your own php installation directory, as shown in the figure below, confirm everything.

3. Work with Apache

php is combined with Apache in module mode, open Apache's configuration file, locate it with the keyword "LoadModule", and configure the module to be loaded,

Add the following two lines at the end:

LoadModule php5_module D:/php/php5apache2_2.dll

PHPIniDir "D:/php"

The first line "LoadModule php5_module D:/php/php5apache2_2.dll" refers to loading PHP in module mode, and the second line "PHPIniDir "D:/php"" indicates the location of PHP's configuration file php.ini. Of course, "D:/php" needs to be changed to the directory where php is decompressed that you selected previously.

There are both php5apache2.dll and php5apache2_2.dll in the php decompression directory. Because our apache version is 2.2, the dll is loaded

Use php5apache2_2.dll and configure it according to your own situation.

Search with the keyword AddType application to define the file type that can execute php,

The original text is as follows: AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.

Join

AddType application/x-httpd-php .php

AddTypeapplication/x-httpd-php.html

Two lines, you can also add more. The essence is to add file types that can execute php. For example, if you add a line "AddTypeapplication/x-httpd-php .htm", then the .htm file can also execute php programs. , you can even add the previous line "AddTypeapplication/x-httpd-php .txt" so that ordinary text txt can also run php programs.

The basic configuration of PHP is completed.

Continue to introduce the PHP swoole extension installation method:

After the installation is complete, put php into the environment variable

# export PATH=/usr/local/php/bin:$PATH 
# export PATH=/usr/local/php/sbin:$PATH
Copy after login

After saving, enter the command in the terminal:

# source ~/.bashrc
Copy after login

然后即可安装swoole扩展。 请到swoole扩展下载地址下载最新stable版本, 本文以1.8.5为例:

# wget https://github.com/swoole/swoole-src/archive/swoole-1.8.5-stable.tar.gz
# tar zxvf swoole-1.8.5-stable.tar.gz
# cd swoole-1.8.5-stable
# phpize 
# ./configure 
# make && make install
Copy after login

然后在php.ini文件添加Swoole扩展:

extension=swoole.so
Copy after login

重启php-fpm:

# service php-fpm restart
Copy after login

然后查看扩展安装情况。如果在列出的扩展中看到了swoole,则说明安装成功:

php -m
Copy after login

以上就是本文的全部内容,希望对大家学习php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1127848.htmlTechArticlePHP的swoole扩展安装方法详细教程,phpswoole安装方法 Swoole支持PHP 5.3.10以上版本,所以安装Swoole之前请先安装PHP 5.3.10以上版本,现在来介绍...
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

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles