Home> PHP Framework> Swoole> body text

How to install swoole extension in phpstudy

(*-*)浩
Release: 2019-12-05 14:01:34
Original
13294 people have browsed it

How to install swoole extension in phpstudy

First install phpstudy. For this step, you can go to http://lamp.phpstudy.net to install it. The whole process will take about 50-90 minutes. It depends on your CPU. CPU The better the performance, the faster(Recommended learning:swoole video tutorial)

Then download the swoole extension download address https://codeload.github.com/swoole/swoole-src /tar.gz/swoole-1.7.9-alpha

Extract tar -xvzf swoole-src-swoole-1.7.9-alpha.tar.gz

cd swoole-src-swoole-1.7.9-alpha sudo vi /root/.bashrc
Copy after login

at the end Add a line of export PATH=/phpstudy/server/php/bin:$PATH

Save and exit

Run the following command on the command line to reload the variable sudo source /root/ .bashrc

Then execute the command phpize

to display the result root@hainuio-X401A:~/swoole-src-swoole-1.7.9-alpha# phpize Configuring for: PHP Api Version : 20100412 Zend Module Api No: 20100525 Zend Extension Api No: 220100525

Run ./configure

Run make

Run sudo make install

Then sudo vi /phpstudy/server/php/etc/php.ini

Add extension=swoole.so in front of extension=php-xxx.dll

Run the command sudo phpstudy restart to restart apache to load the php configuration

Run the command php -m to check if there is a swoole module

The above is the detailed content of How to install swoole extension in phpstudy. 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!