本人备忘的文章~~~
Linux下安装php开发框架yaf
yaf框架中文手册:
yaf手册:
1.下载并安装yaf扩展
#wget http://pecl.php.net/get/yaf-2.2.9.tgz#tar zxvf yaf-2.2.9.tgz#cd yaf-2.2.9[root@bogon yaf-2.2.9]# whereis phpizephpize: /usr/bin/phpize /usr/share/man/man1/phpize.1.gz/usr/bin/phpize[root@bogon yaf-2.2.9]# /usr/bin/phpizeConfiguring for:PHP Api Version: 20090626Zend Module Api No: 20090626Zend Extension Api No: 220090626#whereis php-configphp-config: /usr/bin/php-config /usr/share/man/man1/php-config.1.gz#./configure --with-php-config=/usr/bin/php-config#make && make install
2.添加扩展配置到.ini
在/etc/php.ini文件里添加一行
extension=yaf.so
重启webserver 即可。
如果phpinfo看不到yaf扩展(我就遇到了这个问题)
最后一步可以替换成全路径
extension="/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/yaf.so"