PHP 8.5.2 Released!

インストール手順

Use --with-swoole[=DIR] when compiling PHP.

この PECL 拡張モジュールをインストールする方法は、 マニュアルの PECL 拡張モジュールのインストール という章にあります。 新規リリース・ダウンロード・ソースファイル・管理者情報・CHANGELOG といった関連する情報については、次の場所にあります。 » https://pecl.php.net/package/swoole

add a note

User Contributed Notes 1 note

up
-1
php dot anonymous1 at gmail dot com
7 years ago
to install swoole with mac os x 
open your terminal 
and use this commands 
git clone https://github.com/swoole/swoole-src.git
cd swoole-src
phpize
./configure
make && make install

also find your swoole.so from folder swoole-src and move it 
in to your apache and add full path in php.ini 
like extension=your/full/path/swoole.so
To Top