linux中安装yac扩展

php常见扩展下载地址:http://pecl.php.net/
到上述地址,下载好yac安装包

# tar zxvf yac //解压安装包
# cd yac 
# phpize  //此步骤生成configure命令
# ./configure

安装完毕后到php.ini中加入以下代码

extension=yac.so
[yac]
yac.enable_cli = 1
php
$set = $yac = new Yac();
$yac->set('key','123');
$key = $yac->get('key');
var_dump($key);
?>

原文地址:http://www.laruence.com/2013/03/18/2846.html

你可能感兴趣的:(linux,php,扩展,linux笔记,yac)