共计 2015 个字符,预计需要花费 6 分钟才能阅读完成。
一、环境说明
操作系统:CentOS 6.4 x86_64
Java:jdk-1.7.0_51
二、安装 PHP
在 Shell 中运行以下命令:
yum install -y php httpd
注意:在 CentOS 6.4 系统上通过 yum 安装的 PHP 版本为 5.3.3
三、安装 Zend Debugger
下载 Zend Debugger:
cd /root/Downloads
wget http://downloads.zend.com/studio_debugger/2011_04_10/ZendDebugger-20110410-linux-glibc23-x86_64.tar.gz
注意:最新的 Zend Debugger 只支持 PHP 5.4 和 5.5 版本,不支持 PHP 5.3.3,所以需要下载较老版本的 Zend Debugger。
加压和安装 Zend Debugger:
tar -xvzf ZendDebugger-20110410-linux-glibc23-x86_64.tar.gz
cp -a /root/Downloads/ZendDebugger-20110410-linux-glibc23-x86_64/5_3_x_comp/ZendDebugger.so /usr/lib64/php/modules/
配置 Zend Debugger:
gedit /etc/php.ini
在上述文件的 [PHP] 这一行下面添加如下几行:
zend_extension=/usr/lib64/php/modules/ZendDebugger.so
zend_debugger.allow_hosts=127.0.0.1
zend_debugger.expose_remotely=always
由于 CentOS 6.4 的 libssl 和 libcrypto 已升级到 1.0.0,而上述版本的 Zend Debugger 需要使用 0.9.8 版本,所以还需要进行如下配置:
ln -s /usr/lib64/libssl.so.10 /usr/lib64/libssl.so.0.9.8
ln -s /usr/lib64/libcrypto.so /usr/lib64/libcrypto.so.0.9.8
需要将 SELinux 设置为 permissive 模式,否则 PHP 将不能加载 Zend Debugger:
gedit /etc/selinux/config
将上述文件中的 SELINUX=enforcing 修改为 SELINUX=permissive
保存配置文件后重启系统
四、安装 Eclipse
下载 Eclipse For PHP:
cd /root/Downloads
wget http://ftp.osuosl.org/pub/eclipse/technology/epp/downloads/release/luna/R/eclipse-php-luna-R-linux-gtk-x86_64.tar.gz
解压和安装 Eclipse For PHP:
tar -xvzf eclipse-php-luna-R-linux-gtk-x86_64.tar.gz
mv /root/Downloads/eclipse /usr/local/Eclipse4PHP
在桌面上为 Eclipse 建立 Launcher,然后运行 Eclipse,将其 Workspace 设置为 /var/www/html
五、验证测试
启动 Apache:
service httpd start
测试 PHP 是否加载 Zend Debugger 模块:
php -m
若上述命令没有报错,并且有如下信息,则表示加载模块成功:
[Zend Modules]
Zend Debugger
在 Eclipse 中建立 PHP 测试工程,使用 phpinfo()函数进行验证,如果在页面中看到如下信息,则表示安装成功:
CentOS 6.3 安装 LNMP (PHP 5.4,MyySQL5.6) http://www.linuxidc.com/Linux/2013-04/82069.htm
在部署 LNMP 的时候遇到 Nginx 启动失败的 2 个问题 http://www.linuxidc.com/Linux/2013-03/81120.htm
Ubuntu 安装 Nginx php5-fpm MySQL(LNMP 环境搭建) http://www.linuxidc.com/Linux/2012-10/72458.htm
《细说 PHP》高清扫描 PDF+ 光盘源码 + 全套教学视频 http://www.linuxidc.com/Linux/2014-03/97536.htm
CentOS 6 中配置 PHP 的 LNMP 的开发环境 http://www.linuxidc.com/Linux/2013-12/93869.htm
PHP 的详细介绍:请点这里
PHP 的下载地址:请点这里
更多 CentOS 相关信息见CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14