下载yaf扩展

  • yaf下载

    解压并进入目录

  • tar -zxvf yaf-2.3.3.tgz
  • cd yaf-2.3.3

    phpize

  • 当前目录下输入phpize
    phpize

    开始编译并安装

  • ./configure –with-php-config=$PHP_BIN/php-config
  • 如果不知道自己的php-》bin目录,直接使用linux命令 find / -name php-config 查找并复制过去,然后回车(或者使用whereis php-config)
  • 编译
  • 然后就是make && make install
  • makeinstall
  • 如果看到上图,就代表安装成功了

    修改php.ini的配置

  • 在文件的最后加上 extension=yaf.so
  • 重启php:/etc/init.d/php-fpm restart