今回は、MacシステムにPHP Xdebugをインストールする手順について詳しく説明します。PHPをインストールする際の注意事項は何ですか。
Mac への PHP のインストールデバッグツール xdebug.ini 設定ファイル私のものは /usr/local/etc/php/7.0/conf.d/ext-xdebug.ini です
配置如下: [xdebug] zend_extension="/usr/local/opt/php70-xdebug/xdebug.so" xdebug.remote_enable = On xdebug.remote_handler = dbgp xdebug.remote_host= localhost xdebug.remote_port = 9001 #这个端口不要被占用即可,可以自行指定 xdebug.idekey = PHPSTORM xdebug.remote_autostart=1 xdebug.remote_log=/var/tmp/xdebug.log
推奨読書:
PHPステータスモードの使用の詳細な説明
PHPで関数パラメータを動的に取得する手順の詳細な説明
以上がMac システムに PHP Xdebug をインストールする手順の詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。