install php from source
2008年08月08日 (linux)
command
# cd /usr/local/src # tar zxvf php-5.2.6.tar.gz # cd php-5.2.6 # ./configure \ --with-pgsql=/usr/local/pgsql \ --with-apxs2=/usr/local/apache2/bin/apxs \ --enable-mbstring # make # make test # make install
PR
Comment