ubuntu 安装PHPstorm+xdebug 动态调试环境
在PHP.ini中配置:
zend_extension = /usr/lib/PHP/20170718/xdebug.so
xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.trace_output_dir="/tmp/xdebug"
xdebug.profiler_enable=on
xdebug.profiler_output_dir="/tmp/xdebug"
xdebug.remote_enable = on
xdebug.remote_handler = dbgp
xdebug.remote_host= localhost
xdebug.remote_port = 9000
xdebug.idekey = PHPSTORM
调试demo
安装vmware虚拟机和ubuntu18.04
- 安装ifconfig apt install net-tools
- 升级更新系统 apt-get update apt-get upgrade
apt-get install PHP5.6 apt-get install libapache2-mod-PHP5.6
-
安装MysqL apt-get install MysqL-server MysqL-client
SET PASSWORD FOR ‘root‘@‘localhost‘ = PASSWORD(‘123456‘); 安装PHPstorm+xdebug
-
安装PHPstorm+jdk
安装jdk: apt install default-jre 安装PHPstorm 下载安装包:https://download-cf.jetbrains.com/webide/PHPStorm-2018.2.3.tar.gz 复制到虚拟机解压,执行 ./bin/PHPstorm.sh 安装
-
安装xdebug apt-get install PHP-xdebug
PHP -v 查看xdebug是否安装成功
在PHP.ini中配置:
zend_extension = /usr/lib/PHP/20170718/xdebug.so
xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.trace_output_dir="/tmp/xdebug"
xdebug.profiler_enable=on
xdebug.profiler_output_dir="/tmp/xdebug"
xdebug.remote_enable = on
xdebug.remote_handler = dbgp
xdebug.remote_host= localhost
xdebug.remote_port = 9000
xdebug.idekey = PHPSTORM
配置PHPstorm:
File-setting-PHP
调试demo