欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

安装swoole后,运行php无解析,无法运行

程序员文章站 2022-05-06 23:52:10
...
如图所示
vagrant@vagrant-ubuntu-trusty-64:~$ php server.php 
$http = new swoole_http_server("0.0.0.0", 9501);

$http->on('request', function ($request, $response) {
    var_dump($request->get, $request->post);
    $response->header("Content-Type", "text/html; charset=utf-8");
    $response->end("

Hello Swoole. #".rand(1000, 9999)."

"); }); $http->start(); vagrant@vagrant-ubuntu-trusty-64:~$

phpinfo()

swoole support enabled
Version 1.7.19
Author tianfeng.han[email: mikan.tenny@gmail.com]
epoll enabled
eventfd enabled
timerfd enabled
signalfd enabled
cpu affinity enabled
spinlock enabled
rwlock enabled
Linux Native AIO enabled
Gcc AIO enabled
pcre enabled
zlib enabled
mutex_timedlock enabled
pthread_barrier enabled


php -i

vagrant@vagrant-ubuntu-trusty-64:~$ php -i |grep swoole
vagrant@vagrant-ubuntu-trusty-64:~$

回复内容:

如图所示

vagrant@vagrant-ubuntu-trusty-64:~$ php server.php 
$http = new swoole_http_server("0.0.0.0", 9501);

$http->on('request', function ($request, $response) {
    var_dump($request->get, $request->post);
    $response->header("Content-Type", "text/html; charset=utf-8");
    $response->end("

Hello Swoole. #".rand(1000, 9999)."

"); }); $http->start(); vagrant@vagrant-ubuntu-trusty-64:~$

phpinfo()

swoole support enabled
Version 1.7.19
Author tianfeng.han[email: mikan.tenny@gmail.com]
epoll enabled
eventfd enabled
timerfd enabled
signalfd enabled
cpu affinity enabled
spinlock enabled
rwlock enabled
Linux Native AIO enabled
Gcc AIO enabled
pcre enabled
zlib enabled
mutex_timedlock enabled
pthread_barrier enabled


php -i

vagrant@vagrant-ubuntu-trusty-64:~$ php -i |grep swoole
vagrant@vagrant-ubuntu-trusty-64:~$

1,php -i | grep ini ,找到配置文件,
2,查看ini配置文件地址
3,检查 extension=swoole.so 是否配置
4,php -m | grep swoole

相关标签: php swoole