前提條件:事先已經安裝好了php,版本建議在php7或是以上
2.解壓安裝
tar -zxvf swoole-src-4.2.9.tar.gz
cd swoole-src-4.2.9
phpize (ubuntu 沒有安裝phpize可執行命令:sudo apt-get install php-dev來安裝phpize)
./configure
make
make install
installing shared extensions: /data/php7.2/lib/php/extensions/no-debug-non-zts-20170718/
installing header files: /data/php7.2/include/php/
3.修改php.ini配置檔案
extension=swoole.so
增加這個擴充套件配置項即可。
4.重啟php-fpm
能看到下面的資訊就說明安裝成功了
php 安裝swoole擴充套件
2 解壓unzip swoole src master.zip 3 編譯發現沒有configure 使用phpize 生成 configure 進入到swoole 解壓後的目錄 cd usr local src swoole src master 執行phpize usr local php7 bi...
php安裝swoole擴充套件
pecl download swoole解壓並進入目錄 tar zxvf swoole 4.3.3.tar.gz cd swoole 4.3.3執行phpize生成configure可執行檔案 這裡的目錄一定是你要安裝swoole擴充套件對應的php版本的安裝目錄,如果存在多個php版本一定要注意這...
PHP安裝swoole擴充套件
個人伺服器進行swoole安裝 伺服器 centos 6.8版本 swoole手冊建議pecl安裝 pecl install swoole執行這個命令之後發現沒有pecl這個命令 所以只能進行pecl安裝 yum install php71w pear php71w develphp71w這個是因為...