PHP7.3安裝event擴展

安裝支持庫libevent

wget https://github.com/libevent/libevent/releases/download/release-2.1.11-stable/libevent-2.1.11-stable.tar.gz
tar -zxvf libevent-2.1.11-stable.tar.gz
cd libevent-2.1.11-stable
./configure --prefix=/usr/local/libevent-2.1.11
make && make install

安裝event庫

能夠在http://pecl.php.net/package/event 查看最新的穩定版本,我這裏安裝的是2.5.3php

cd /home
wget http://pecl.php.net/get/event-2.5.3.tgz
tar -zxvf event-2.5.3.tgz
cd event-2.5.3
/www/server/php/72/bin/phpize
./configure --with-php-config=/usr/local/src/php/bin/php-config --with-event-libevent-dir=/usr/local/libevent-2.1.11
make && make install

配置php.ini

打開php.ini,在裏面添加:git

extension=event.so

##經過命令查看github

php --ri event
相關文章
相關標籤/搜索