#この記事の動作環境: Windows7 システム、PHP5 バージョン、DELL G3 コンピューターphp5 のインストール方法: まず、PHP5 ソース コード パッケージをダウンロードし、次に「make && make install」コマンドでコンパイルおよびインストールし、次にファイルをコピーして設定ファイルを作成し、最後に PHP 情報を確認します。
PHP5 インストール
src ディレクトリに移動します cd /usr/local/srcPHP5 ソース コード パッケージをダウンロードします wget http://cn2.php.net/distributions/php-5.6.37.tar.gz ダウンロードしたファイルを解凍します tar -zxvf php-5.6.37.tar.gzファイル ディレクトリを入力します cd php-5.6.37configure ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-zlib-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl-dir=/usr/include/openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif
checking for xml2-config path… configure: error: xml2-config not found. Please check your libxml2 installation.
yum install libxml2-devel -y yum install libxml2 -y
configure:error: cannot find OpenSSL's <evp'h>
export PHP_OPENSSL_DIR=yes
configure:error:please reinstall the BZip2 distribution
yum install bzip2-devel -y
configure:error:jpeglib.h not found
yum install libjpeg-devel -y
png.h not found
yum install libpng-devel
freetype-config not found
yum install freetype-devel -y
mcrypt.h not found please reinstall libmcrypt
yum install libmcrypt-devel -y
make && make install
/usr/local/php/bin/php -i |less
PHP ビデオ チュートリアル 」
以上がphp5のインストール方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。