在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1.安装libevent // libevent 是一个库,event扩展依赖这个库并实现其功能!其实有php-libevent扩展,但是不知道什么原因,并不支持php7 下载最新稳定版:wget -c https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz 解压:tar -zxvf libevent-2.1.8-stable.tar.gz 进入目录,配置一下安装目录,然后安装 cd libevent-2.1.8 ./configure --prefix=/usr/local/libevent make && make install 2.安装sockets扩展 // 如果没有安装这个扩展,生成event扩展的时候会提示你缺少socket扩展 我之前有安装过pcntl扩展,一模一样,这里不再赘述:https://www.cnblogs.com/milkone/p/9982051.html 3.安装event扩展 下载文件:wget -c http://pecl.php.net/get/event-2.3.0.tgz 解压:tar -zxvf event-2.3.0.tar.tgz 进入目录 :cd event-2.3.0.tar 运行phpize: /usr/local/php7/bin/phpize 配置 :./configure --with-php-config=/usr/local/php7/bin/php-config --with-event-libevent-dir=/usr/local/libevent/ 安装:make && make install 配置文件添加扩展:echo extension = event.so >> /usr/local/php7/etc/php.ini 查看是否安装完成:php -m 4.其他说明 根据php官方文档,event依赖libevent和openssl,openssl 一般在安装php7的时候就需要安装,这里不再重复安装了 |
2022-08-18
2022-07-18
2022-08-17
2022-08-17
2022-11-06
请发表评论