9951 explained code solutions for 126 technologies


php-swooleHow to install php swoole.


apt install php-dev php-pear
pecl install swoole
bash -c "echo 'extension=swoole' >> $(php -i | grep /.+/php.ini -oE)"ctrl + c
php-dev

php development tools

pecl

native php package manager

swoole

lib we want to install (will take a while)

echo 'extension=swoole'

add swoole extension loader to php.ini config file (cli version)