表紙 > PHP | symfony > Xdebugのインストール

Xdebugのインストール

3 月 30
PHP, symfony aa

SymfonyのデバッグでXdebugがよいとのこと。

会社でも入れてみようとしたけど、そんときは失敗したのでのんびり検索。

PHPのバージョンが5.2.5なので「php_xdebug-2.0.2-5.2.5.dll」をインストールする。

以下のサイトから「php_xdebug-2.0.2-5.2.5.dll」をダウンロードして
C:\xampp\php\extフォルダに配置する。
Xdebug - Debugger and Profiler Tool for PHP

;extension=php_xdebug.dllはそのままかえないこと。
[Zend]
;zend_extension_ts = “C:\xampp\php\zendOptimizer\lib\ZendExtensionManager.dll”

[XDebug]
;; Only Zend OR (!) XDebug
zend_extension_ts=”C:\xampp\php\ext\php_xdebug-2.0.2-5.2.5.dll”
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir=”C:\xampp\tmp”

コメント:0

返信は無いかもしれないですが初めてのコメントどうですか?
名前とかを保存しちゃう?

トラックバック:0

トラックバックです。バンバンしてあげてください。
http://www.ezo-style.com/2008/03/30/xdebug%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/trackback/
Listed below are links to weblogs that reference
Xdebugのインストール from エゾスタイル

表紙 > PHP | symfony > Xdebugのインストール