23
36

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

XAMPPのPHP7でXdebugを使う

Posted at

XAMPPのPHP7でXdebugを使う場合

  1. XdebugのDLLをダウンロード
    XAMPPのバージョンによっては環境が異なりXdebugのDLLが適用できないものもある。

  2. まずは、XAMPPでApacheを起動させる
    image.png

  3. phpinfo()でPHPの情報を表示
    image.png

  4. 環境にあったXdebug.dllをダウンロード
    phpinfo()で出力されたソースコード(html)を全部コピー
    https://xdebug.org/wizard.php のサイトのテキストボックスにコピーしたソースコードを貼り付ける
    image.png
    [Analyse my phpinfo() output]ボタンを押す
    image.png
    現在の環境に合ったDLLのファイルがダウンロードできるのでこれをダウンロードする

  5. C:\xampp\php\ext にダウンロードしたDLLを入れる

  6. php.iniを編集 下記を末尾に追記
    ただしphp_xdebug-2.6.0-7.2-vc15.dllはダウンロードしてきたファイル名に変更すること

php.ini
[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug-2.6.0-7.2-vc15.dll"
xdebug.remote_autostart = 1
xdebug.profiler_append = 0
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "c:\xampp\tmp"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_log="c:\xampp\tmp\xdebug.txt"
xdebug.remote_port = 9000
xdebug.trace_output_dir = "c:\xampp\tmp"
xdebug.remote_cookie_expire_time = 36000
23
36
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
36

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?