1.svn:
安装SVN的Command Lines Tools。
在phpStorm的SVN属性中File->Setting->Version Control->Subversion->Use Command Line Client填入:C:\Program Files\TortoiseSVN\bin\svn.exe
注:svn.exe路经要修改成你自己的.
2.与google浏览器设置关联进行断点调试
Run->Edit Configurations->Add New Configuration->PHP Web Application
Servers项点击弹出窗口->Add,填写Name,Host,Port,选择Debug值为Xdebug
Browser项选择Chrome
安装Chrome插件xdebug helper
在Chrome浏览器中输入:chrome://extensions/,点击Xdebug helper中选项,设置IDE key为phpstorm
在php安装目录下,找到php.ini文件,在[XDebug]配置下如下进行设置:
zend_extension = "D:\Program Files\xampp\php\ext\php_xdebug.dll"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_mode = "req"
xdebug.remote_port = 9000
重启apache,点击phpstorm工具栏右上角监听按钮,打开Chrome浏览器,点亮debug虫子图标。
时间: 2024-10-01 06:56:54