php7.3安装yaf扩展


       目前pecl官网的yaf版本是3.0.7,php7.3版本无法安装哦,需要到鸟哥的github上面去编译安装3.0.8版本https://github.com/laruence/yaf/releases


     直接pecl install yaf是3.0.7版本的,7.3版本的php是无法安装的哦,会报错误:
/soft/yaf-3.0.7/yaf_session.c:97:31: error: ‘ZEND_WRONG_PROPERTY_OFFSET’ undeclared (first use in this function)
  if (property_info->offset != ZEND_WRONG_PROPERTY_OFFSET) {^
/soft/yaf-3.0.7/yaf_session.c:97:31: note: each undeclared identifier is reported only once for each function it appears in
make: *** [yaf_session.lo] Error 1


php7.3版本编译安装yaf3.0.8:

1、 wget https://github.com/laruence/yaf/archive/yaf-3.0.8.tar.gz
2、 tar -zxvf yaf-3.0.8.tar.gz
3、 cd yaf-3.0.8.tar.gz
4、 /usr/local/php/bin/phpize/
5、 ./configure --prefix=/usr/local/php/bin/php-config
6、 make && make install
然后extension=yaf.so加入到你的php.ini配置文件
例如我的php.ini :  vim /usr/local/php/etc/php.ini 

信号控制重启php:

ps  -ef|grep php 查看php进程的端口

kill -USR2 端口号

也可以暴力重启,不建议!

你可能感兴趣的:(php)