怎样安装PHP的yaf插件

2020年8月2日 | 分类: 【技术】

【介绍】

参考:https://www.laruence.com/manual/ (YAF手册)

下载:http://pecl.php.net/package/yaf

【安装(编译)】

wget -c http://pecl.php.net/get/yaf-3.2.5.tgz && tar zxf yaf-3.2.5.tgz && cd yaf-3.2.5
phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

打开,/usr/local/php/etc/php.ini ,添加:

; [yaf]
extension = "yaf.so"
yaf.environ = "product"
yaf.use_namespace = 1

【安装(库)】

参考:https://amon.org/php

CentOS 7:

yum --enablerepo=remi-php73 install php-yaf

CentOS 8:

dnf install php-yaf

【查验】

php -m | grep yaf
/usr/local/php/bin/php -m | grep yaf

输出:

yaf

查看版本:

php --re yaf|grep VERSION

输出:

    Constant [ string YAF\VERSION ] { 3.2.5 }