由于項(xiàng)目使用composer要求php必須為php8,在安裝event過程中一直安裝失敗,中途各種報(bào)錯都有,后來才發(fā)現(xiàn)好像是低版本的event不支持php8.0,后來使用最新版本3.0.5成功安裝
yum install libevent -y
wget https://pecl.php.net/get/event-3.0.5.tgz
tar -zxvf event-3.0.5.tgz
cd event-3.0.5
/www/server/php/80/bin/phpize
./configure --with-php-config=/www/server/php/80/bin/php-config
make && make install
echo "extension=event.so" >> /www/server/php/80/etc/php.ini
service php-fpm-80 reload
看到這個頁面就很開心