Home > Article > PHP Framework > How to uninstall swoole extension
Swoole is a PHP asynchronous network communication engine for production environments, allowing PHP developers to write high-performance asynchronous concurrent TCP, UDP, Unix Socket, HTTP, and WebSocket services.
Let’s take a look at how to uninstall the swoole extension:
1. Delete extension=swoole.so in php.ini
2. Uninstall , switch to the bin in the PHP installation directory (use command: which php)
Enter the directory:
cd /usr/bin
Execute:
./pecl uninstall swoole
Recommended learning: swoole tutorial
The above is the detailed content of How to uninstall swoole extension. For more information, please follow other related articles on the PHP Chinese website!