博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php环境安装
阅读量:4970 次
发布时间:2019-06-12

本文共 1134 字,大约阅读时间需要 3 分钟。

[PHP]

yum install libxml2-devel
yum install gd-devel
yum install libmcrypt-devel
yum install libcurl-devel
yum install openssl-devel
yum install php-soap -y

./configure --prefix=/usr/local/php --enable-cli --enable-shared --with-libxml-dir --with-gd --with-openssl --enable-mbstring --with-mcrypt --with-mysqli --with-mysql --enable-opcache --enable-mysqlnd --enable-zip --with-zlib-dir --with-pdo-mysql --with-jpeg-dir --with-freetype-dir --with-curl --without-pdo-sqlite --without-sqlite3 --enable-fpm
make & make install

[Nginx]

./configure --prefix=/usr/local/nginx --without-http_memcached_module --user=nginx --group=nginx --with-http_stub_status_module --with-openssl=/usr/ --with-pcre=/usr/local/src/pcre-8.35
make & make install
[Yaf]
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

//最好放在extension的位置
extension=yaf.so
//在php.ini文件末尾放置
[yaf]
yaf.environ = product
yaf.library = NULL
yaf.cache_config = 0
yaf.name_suffix = 1
yaf.name_separator = ""
yaf.forward_limit = 5
yaf.use_namespace = 0
yaf.use_spl_autoload = 0

转载于:https://www.cnblogs.com/assion/p/8001231.html

你可能感兴趣的文章
JS学习笔记 - fgm练习 - 数字自增 定时器 数字比大小Math.max
查看>>
NSNotification学习笔记
查看>>
asp.net asp:Repeater嵌套绑定方法(2)
查看>>
微信公众平台开发之基于百度 BAE3.0 的开发环境搭建(采用 Baidu Eclipse)
查看>>
动态规划 Common Subsequence
查看>>
GitHub 开启 Two-factor authentication,如何在命令行下更新和上传代码
查看>>
C#中的线程一(委托中的异步)
查看>>
[HDOJ6154] CaoHaha's staff(规律, 打表, 二分)
查看>>
可行性研究课后习题4、5
查看>>
纯css3实现文字间歇滚动效果
查看>>
ajax传数组到后台,后台springmvc接收数组参数
查看>>
基于axis的WebService的案例
查看>>
mysql 日期比较
查看>>
JetBrains
查看>>
Realtek无线网卡对于Ubuntu的WiFi不支持的处理办法
查看>>
求最大公约数——欧几里得算法
查看>>
项目经理的看家本领
查看>>
蓝牙在小程序中的应用
查看>>
【剑指Offer】【面试题03:二维数组中的查找】
查看>>
VC++/MFC(VC6)开发技术精品学习资料下载汇总
查看>>