PHP扩展开发环境搭建
Posted Sawyer Ford
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP扩展开发环境搭建相关的知识,希望对你有一定的参考价值。
今天买了台阿里云服务器用于日常开发测试。系统版本CentOS 6.5 64位。
首先安装nginx:
yum install nginx
参考文档:
在CentOS 6上搭建LNMP环境
安装完成后,使用 service nginx start 命令启动nginx出现错误
nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)
解决方法见:
nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)
编译安装php-5.6.29:
./configure --enable-fpm --enable-debug
提示出错:
configure: error: xml2-config not found. Please check your libxml2 installation.
看来缺东西了:
yum install libxml2-devel
然后再次执行
./configure --enable-fpm --enable-debug make && make install
安装成功。
以上是关于PHP扩展开发环境搭建的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段