本人备忘的文章~~~
Linux下安装php开发框架yaf
yaf框架中文手册:http://yaf.laruence.com/manual/index.html
yaf手册:http://www.php.net/manual/en/book.yaf.php
1.下载并安装yaf扩展 http://pecl.php.net/package/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 phpize
phpize: /usr/bin/phpize /usr/share/man/man1/phpize.1.gz
/usr/bin/phpize
[root@bogon yaf-2.2.9]# /usr/bin/phpize
Configuring for:
PHP Api Version: 20090626
Zend Module Api No: 20090626
Zend Extension Api No: 220090626
#whereis php-config
php-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.添加扩展配置到PHP.ini
在/etc/php.ini文件里添加一行
extension=yaf.so
重启webserver 即可。
如果phpinfo看不到yaf扩展(我就遇到了这个问题)
最后一步可以替换成全路径
extension="/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/yaf.so"