0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Xdebugのダウンロード

Last updated at Posted at 2024-02-14

以下はcurlを使用してXdebugをダウンロードする手順です:

Xdebugのダウンロード:
curlコマンドを使用して、Xdebugの圧縮ファイルをダウンロードします。

bash

curl -O https://xdebug.org/files/xdebug-3.X.X.tgz

Xdebugの解凍:
ダウンロードしたXdebugの圧縮ファイルを解凍します。


tar -zxvf xdebug-3.X.X.tgz

Xdebugのビルドとインストール:
解凍したディレクトリに移動し、Xdebugをビルドしてインストールします。

bash

cd xdebug-3.X.X
phpize
./configure
make
sudo make install

php.iniファイルの設定:
Xdebugを有効にするために、php.iniファイルを編集します。

ini

[Xdebug]
zend_extension=/path/to/xdebug.so  ; xdebug.soのパスを指定します
xdebug.mode=debug
xdebug.client_host=127.0.0.1
xdebug.client_port=9003

上記のzend_extensionの値には、ビルドしたXdebugの.soファイルのパスを指定します。

Webサーバーの再起動:
PHPの設定を変更した後は、Webサーバーを再起動して変更を反映させます。

bash

sudo systemctl restart httpd

これでXdebugがインストールされ、PHP 8の環境で使用できるはずです。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?