linux 安装 php

安装libmcrypt

cd /usr/local/src   

tar zxvf  libmcrypt-2.5.7.tar.gz   #解压   

cd  libmcrypt-2.5.7 #进入目录   

./configure    #配置   

make             #编译   

make install   #安装

 

安装php

cd /usr/local/src   

tar -zvxf php-5.3.13.tar.gz   

cd  php-5.3.13   

mkdir -p /usr/local/php5  #建立php安装目录   

./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-gd --with-iconv  --with-zlib  --enable-xml --enable-magic-quotes --enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curlwrappers --enable-mbregex  --enable-fpm --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-mcrypt --with-curl --with-jpeg-dir --with-freetype-dir #配置   

make   #编译   

make install    #安装

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。