设置的是127 的地址,而用localhost 方式请求,所以无法跳到断点
环境
phpstudy 2018
php 7.2.10
xdebug版本 (因为要与php版本要对应,注意别选错了,我的用的是32位,最开始下的x64似乎不能用)
php_xdebug-2.8.0alpha1-7.2-vc15-nts.dll
phpstudy 扩展中勾上 xdebug
php.ini
[XDebug] xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 ;xdebug.profiler_output_dir="E:\phpStudy\PHPTutorial\tmp\xdebugprofiler" xdebug.trace_output_dir="E:\phpStudy\PHPTutorial\tmp\xdebugtrace" xdebug.remote_log=E:\phpStudy\PHPTutorial\tmp\xdebug\xdebug.log xdebug.profiler_output_name = "cache.out.%t-%s" xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = "127.0.0.1" zend_extension="E:\phpStudy\PHPTutorial\php\php-7.2.1-nts\ext\php_xdebug.dll" xdebug.remote_port = 9000 xdebug.remote_mode = "req" xdebug.remote_autostart=1 xdebug.idekey = PHPSTORM
全掉下边红框选择,要不会每次从index.php跳
跳到断点的样子,没操作过的人可能不知道最终显示的样式
直接访问某个页面,在它要用到php上设置断点
比如下边
请求
到达断点
tp5 封装的非常全面,把数据库存储这块都给封装到模型里.直接调用就可,比spring一层层的写快很多
但也要看看其手册,毕竟那些快捷的定义需要识记一些
web 开发还是挺繁琐的,光那些表的字段复制来复制去的在数据库与前端对接上等等.
但web 兼容性强啊, 方便在各种仪器上打开网页就可以进行一些操作了.而c# winform 桌面端使用啊,开发成本低,
有些公司开发个后台用的springmvc 更新个页面需要经过产品经理设计,到前端ui 再到前端编码,后台编码.很费劲,其实只需要在电脑上打开的东西,没必要用web的.
原文地址:https://www.cnblogs.com/zuochanzi/p/11229080.html
时间: 2024-11-17 03:46:34