この記事では、Centos での PHP のインストールと構成のための xdebug 拡張機能を主に紹介します。必要な方は参考にしてください。xdebug をダウンロードしてインストールします。 xdebugを入手
wget http://www.xdebug.org/files/xdebug-2.3.3.tgz
解凍tar zxvf xdebug-2.3.3.tgz
解凍モジュールを入力cd xdebug-2.3.3
プラグインモジュールを構築
/usr/local/php/bin/phpize
xdebugを設定
./configure –enable-xdebug –with-php-config=/usr/local/php/bin/php-config
コンパイルしてインストール
make && make install
特別な事情がない場合は上記の手順でインストールしてください。 、インストールはスムーズに進み、最終的な結果は次のようになります。インストールが成功したことを示します
2. xdebugをサポートするようにphpを設定します
php.iniを開きますInstalling shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/
+----------------------------------------------------------------------+
| |
| INSTALLATION INSTRUCTIONS |
| ========================= |
| |
| See http://xdebug.org/install.php#configure-php for instructions |
| on how to enable Xdebug for PHP. |
| |
| Documentation is available online as well: |
| - A list of all settings: http://xdebug.org/docs-settings.php |
| - A list of all functions: http://xdebug.org/docs-functions.php |
| - Profiling instructions: http://xdebug.org/docs-profiling2.php |
| - Remote debugging: http://xdebug.org/docs-debugger.php |
| |
| |
| NOTE: Please disregard the message |
| You should add "extension=xdebug.so" to php.ini |
| that is emitted by the PECL installer. This does not work for |
| Xdebug. |
| |
+----------------------------------------------------------------------+
設定情報を追加します
vi /usr/local/php/etc/php.ini
phpスクリプトは phpinfo() を使用して、以下に示すように php の構成を表示し、構成が成功したことを示します
以上がCentos の PHP で xdebug 拡張機能をインストールして構成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。