服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - PHP教程 - PhpStorm2020 + phpstudyV8 +XDebug的教程详解

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

2021-10-26 15:22weixin_41245990 PHP教程

这篇文章主要介绍了PhpStorm2020 + phpstudyV8 +XDebug的教程详解,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

wnmp(windows+nginx+mysql+php)环境安装操作:

1、安装phpstudy

1.1、下载phpstudy

下载地址:www.xp.cn/
解压后运行exe进行安装,我的安装目录是:d:\phpstudy_pro

1.2、配置环境:

在桌面启动小皮进行配置,我的配置如下:

首页面板:启动"wnmp"

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

网站面板:php版本

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

环境面板:数据库、php运行环境

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

2、安装phpstorm2020

2.1、下载phpstudy

下载地址:https://blog.jetbrains.com/phpstorm/2020/03/phpstorm-2020-1-beta/

我使用的是缺省目录进行安装,如何激活在这就不详细说了。

2.1、配置php版本信息

我们点击“file->settings”菜单进行php版本配置,使用和phpstudy对应的版本php7.3.4。

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

注意:interpreter默认是没有的,我们需要点击右边的按钮进行配置。

PhpStorm2020 + phpstudyV8 +XDebug的教程详解
PhpStorm2020 + phpstudyV8 +XDebug的教程详解

3、新建测试工程

 3.1、使用phpstorm新建工程"hellophp"

第一步:打开phpstorm软件,点击创建新项目,在输入框填写带项目存放地址的项目名称,完成后点击创建。

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

3.2、配置工程的本地服务

我们点击“工具/部署/配置”菜单进行本地服务配置

PhpStorm2020 + phpstudyV8 +XDebug的教程详解
PhpStorm2020 + phpstudyV8 +XDebug的教程详解

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

点击确定后进行具体配置:
connection面板:配置部署目录

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

mappings面板:配置相对目录和访问地址

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

配置完之后点击“确定”。

3.3、配置运行环境

我们点击“运行/编辑配置”菜单进行运行环境配置

PhpStorm2020 + phpstudyV8 +XDebug的教程详解
PhpStorm2020 + phpstudyV8 +XDebug的教程详解
PhpStorm2020 + phpstudyV8 +XDebug的教程详解

3.4、创建php文件

选择工程,单击右键->new->php file

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

输入文件的名称,点击确定增加php文件

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

在新建的文件里输入代码:

  1. <?php 
  2. echo "Hello PHP!"// 在页面上输出“Hello PHP!” 
  3. phpinfo();     // 调用PHP内置的函数显示PHP的基本信息 

3.5、部署工程

在菜单中选择tools->deployment->upload to localhost上传工程。

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

上传成功后,下方控制台显示上传的具体信息:

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

我们在phpstudy的www/hellophp目录下可以找到刚才上传的index.php文件

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

3.6、运行hello php

点击页面中悬浮的浏览器运行页面

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

我们来看看效果:

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

到这,我们完成了phpstudy+phpstorm配置和hellophp的运行,但是到目前为止phpstorm只是承担了编辑器和部署的功能,没法直接调试,下面我们就来完成在phpstorm进行单步调试。

4、调试hello php

4.1、浏览器和插件

1)浏览器我们使用chrome,下载地址:https://www.google.com/chrome/;
2)配合chrome的插件我们使用xdebug,安装完成在浏览器地址栏的右侧能够看到一只小爬虫,点击后如下图所示:

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

我们选择debug,就会通知我们的开发环境进行调试,选择disable,就会直接运行。
我们可以在xdebug helper中配置它,选择phpstorm并且在右边的框中填入phpstorm-xdebug。

PhpStorm2020 + phpstudyV8 +XDebug的教程详解
PhpStorm2020 + phpstudyV8 +XDebug的教程详解

到这里,我们可以phpstorm中设置断点,然后使用浏览器的xdebug helper开启页面调试。

4.2、在php.ini文件的末尾添加如下配置:

  1. [Xdebug] 
  2. zend_extension=D:/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug.dll 
  3. xdebug.collect_params=1 
  4. xdebug.collect_return=1 
  5. xdebug.auto_trace=On 
  6. xdebug.trace_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.trace ;设置的函数调用监测信息的输出路径 
  7. ;xdebug.profiler_enable=On  ;效能监测的设置开关 
  8. xdebug.profiler_enable = 1 
  9. xdebug.profiler_enable_trigger = 0 
  10. xdebug.profiler_output_dir="D:\phpstudy_pro\Extensions\tmp\xdebug"  ;profiler_enable设置为1的时候,效能监测信息写入文件所在的目录 
  11. xdebug.remote_host = "localhost" 
  12. xdebug.remote_port=9090 
  13. xdebug.remote_handler="dbgp" 
  14. xdebug.profiler_append = 0 
  15. xdebug.remote_enable=On 
  16. xdebug.idekey=phpstorm-xdebug 
  17. xdebug.profiler_output_name ="cache.out.%t-%s"  ;生成的效能监测文件的名字 

4.3、在phpstorm配置debug:

1)选择file->settings->languages&frameworks->php>debug,找到xdebug选项卡,debug port 输入的是刚刚php.ini配置文件当中xdebug.remote_port的值,具体配置如下图:

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

2)选择file->settings->languages&frameworks->php->debug->dbgp proxy,
ied key输入刚刚php.ini文件中xdebug.idekey的值,host、port是file->settings->languages&frameworks->php->servers中设定的host、port值,具体配置如下图:

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

4.4、开启xdebug调试

在phpstorm里打开监听,就是一个电话一样的按钮,点击变为绿色,在程序代码点前点击,设置程序段点,点击绿色的debug爬虫按钮,chrome浏览器打开xdebug页,phpstorm出现debug窗口,并获取到variables值

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

5、错误处理

5.1 php warning: xdebug must be loaded as a zend extension in unknown on line 0

原因1:
remote_port我们使用的是9090,默认使用的是9000。由于9000端口会被nginx占用做代理,如果被占用,就会导致php无法调试。
原因2:
phpstudy集成xdebug扩展,我们在php扩展中选择php_xdebug时会出现上述错误,个人分析:可能是因为php.ini中配置的zend_extension和选项有冲突。

PhpStorm2020 + phpstudyV8 +XDebug的教程详解

到此这篇关于phpstorm2020 + phpstudyv8 +xdebug的教程详解的文章就介绍到这了,更多相关phpstorm2020 phpstudyv8 xdebug内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_41245990/article/details/105957776

延伸 · 阅读

精彩推荐