Yaf的安裝

Yaf的安裝

1、下載yaf安裝包

  • pecl,進入php官方擴展模塊官網,yaf被收錄在其中
  • 搜索:yaf
  • yaf PHP Framework in PHP extension,便可下載各類版本的yaf安裝包。

2、解壓並安裝

  • tar -zxvf yaf-3.0.5php

    • 我下載的版本是3.0.5
  • cd yaf-3.0.5
  • your/phpize/pathnginx

    • 若是你不知道你的phpize的路徑,能夠find / -name 'phpize'
  • ./configure --with-php-config=your/php-config/pathgit

    • 若是你不知道你的php-config路徑,同上
  • make
  • make install
  • vim your/php.ini/pathgithub

    • 添加三行:
    • [Yaf]
    • extension=yaf.so
    • yaf.environ="product"
  • systemctl start php-fpm.servicevim

    • 重啓php-fpm

3、 配置yaf的rewrite規則

if (!-e $request_filename) {
    rewrite ^/(.*) /index.php?$1 last;
}

4、生成一個最簡單的yaf項目

  • wget https://github.com/laruence/yaf/archive/master.zip
  • unzip master.zip
  • cd yaf-master
  • cd tools/cgphp-fpm

    • 能夠看到yaf_cg,能夠經過yaf_cg生成一個最簡單的yaf項目
  • php yaf_cg project_name
  • cd outputcode

    • 便可看到你生成的項目
相關文章
相關標籤/搜索