php大家一般用什么工具调试的
php大家一般用什么工具调试的
想稍微改一下别人写的php插件,代码意思大多就是那个意思,大概能看个明白,但我如果想查找函数来源,或是在下个断看一下有没有运行到某个位置、查看变量 。。这些该怎么弄,网上查都是说用记事本,notepad等等。。但这些工具编写内容较小的系统,对于dede这种稍微大型 的cms根本要人命,
大湿们都用的什么工具调试开源的代码的。。没有好用的工具。。
新学的,硬实不太明白。。
回复讨论(解决方案)
来mark下看看别人的经验.我自己的话,editplus查看和编写代码 print_r+exit中断用浏览器逐步尝试 用firebug来看JS效果和网络请求/..... 貌似很原始的样子,
其实我是弄C++的,平时感觉挺方便的
我和1?一?,也是用editplus??
小????用 vardump()
??的??用zend studio 5.5 的?步跟?方式
zengstudio 点击函数就能看见函数出处 碉堡了
eclipse php
html 输出就在浏览器测试,echo + var_dump + exit
写php模块的话就命令行测试(或者可以模拟控制台的编辑器如 sublime text 等)
用你的cpp写个ide
不知道楼主具体要调试什么?方便点的话,找个好的编辑器,我目前用的是phpdesign 或者可以用 phpstorm
直接用PHP自带的命令行 >php -l 路径\文件.php 这样可以检查语法错误,并告诉你代码哪一行出错了,也不用借助额外工具,非常方便
xdebug
var_dump()
var_dump() 我用thinkphp框架,其内部也有一些调试的功能
一直是exit();echo "";var_dump();在加上报错
唉,我也困惑,不会调试,转战asp.net了
var_dump() 我用thinkphp框架,其内部也有一些调试的功能
+1
eclipse php
个人觉得eclipse php是很好用的工具。不过调错的这件事情基本上是一个综合多方面工具的,有eclipse自动显示,有网页显示,也有命令要求显示或者关闭等等。
eclipse php
个人觉得eclipse php是很好用的工具。不过调错的这件事情基本上是一个综合多方面工具的,有eclipse自动显示,有网页显示,也有命令要求显示或者关闭等等。 我也觉得
GoodsList
zengstudio 点击函数就能看见函数出处 碉堡了
如果工程比较大,多个文件中有这个函数,出来一堆文件要你选的。。上次查看织梦的就是的,还要一个一个的找
zendstudio 10 + xdebug + Firefox + The easiest Xdebug
你用浏览器浏览一个页面,会自动调用编辑器里对应的代码上,然后就一步一步跟踪
QQ群: 33918040
dreamveawer其实在界面设计上是略优于eclipse的,但是我一般直接通过ie来确定错误,其实很方便的,会帮你自动定位!如果说html中多少行出错,那么就是javascript的问题,如果是php的问题那么会直接告诉你在php文件多少行,很方便的,不妨试试!
我也是新手,用的是editplus 和dw
eclipse 和 zend studio

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
