美文网首页
php7下安装event扩展

php7下安装event扩展

作者: 墨丘利lh | 来源:发表于2018-02-08 16:46 被阅读0次

    安装支持库libevent,需要编译高版本

    wget -c https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz -P /usr/local/src

    cd /usr/local/src

    tar -zxvf libevent-2.1.8-stable.tar.gz && cd libevent-2.1.8-stable

    ./configure --prefix=/usr/local/libevent-2.1.8

    make && make install

    安装event库

    wget -c http://pecl.php.net/get/event-2.3.0.tgz -P /usr/local/src

    cd /usr/local/src

    tar -zxvf event-2.3.0.tgz && cd event-2.3.0

    /usr/local/php/bin/phpize

    ./configure --with-php-config=/usr/local/php/bin/php-config --with-event-libevent-dir=/usr/local/libevent-2.1.8/

    make && make install

    在php.ini添加下面配置

    extension=event.so

    相关文章

      网友评论

          本文标题:php7下安装event扩展

          本文链接:https://www.haomeiwen.com/subject/uhittftx.html