ホームページ  >  記事  >  バックエンド開発  >  Centos の PHP で xdebug 拡張機能をインストールして構成する

Centos の PHP で xdebug 拡張機能をインストールして構成する

不言
不言オリジナル
2018-06-04 10:08:412561ブラウズ

この記事では、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 サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。