Home Backend Development PHP Tutorial PHPLog php program debugging and tracking tool_PHP tutorial

PHPLog php program debugging and tracking tool_PHP tutorial

Jul 21, 2016 pm 03:44 PM
php principle exist place tool of program Record debug track

Principle:

1. During the execution of the program, record the variables you want to track, the call stack and the parameters of each function call in the corresponding places.
Record this information in a certain format. File, one variable per line, please refer to the code for the specific data format, I will not go into details here.

2. Now there is all the information (including call stack and parameters) every time the variable is recorded. When you log in through the browser When accessing this program, this program will read and analyze the entire file,
display all your debugging information on the page, and it will dynamically refresh ajax to keep synchronized with your debugging.

Draw a picture Well, it’s much clearer.

PHPLog php program debugging and tracking tool_PHP tutorial

BackTrace is the call stack information, which is not reflected in the picture. It is dynamically refreshed by ajax.


Function:

Cut again Here are a few local diagrams:

1. Include files, debugging variables (the above is the program, the bottom is the debugging output of apache_request_headers())

PHPLog php program debugging and tracking tool_PHP tutorial

2. Call stack list of a certain function in the drupal system

PHPLog php program debugging and tracking tool_PHP tutorial

3. Call parameters of a function in the stack

PHPLog php program debugging and tracking tool_PHP tutorial



Postscript:


The program basically implements the functions of debugging and tracking PHP variables, and also comes with a call stack and call parameters View function.

Nowadays, I rarely use echo, print_r, var_dump and other system functions unless necessary to debug output. Basically, you can get what you want with this.

Especially for complex systems like drupal, you can clearly know how the program is executed.


Explanation:

The program is written in php4. It has been tested on php4.4.8 and 5.2.5, and it theoretically supports php4 and php5.

It has also been tested on linux, window, ie6-7, and firefox, but I still cannot guarantee that it will work in your environment. There are no errors when downloading. If there are any, please correct them yourself.

Please do not let the log file exceed 5M in size, as the browser may crash.
Download address http://www.jb51.net/codes/ 20851.html

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320486.htmlTechArticlePrinciple: 1. During the execution of the program, record the variables and call stacks you want to track in the corresponding places And the parameters of each function call, record this information to a file in a certain format, a...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP's Impact: Web Development and Beyond PHP's Impact: Web Development and Beyond Apr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How to solve the complexity of WordPress installation and update using Composer How to solve the complexity of WordPress installation and update using Composer Apr 17, 2025 pm 10:54 PM

When managing WordPress websites, you often encounter complex operations such as installation, update, and multi-site conversion. These operations are not only time-consuming, but also prone to errors, causing the website to be paralyzed. Combining the WP-CLI core command with Composer can greatly simplify these tasks, improve efficiency and reliability. This article will introduce how to use Composer to solve these problems and improve the convenience of WordPress management.

PHP and Python: A Deep Dive into Their History PHP and Python: A Deep Dive into Their History Apr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Solve database connection problem: a practical case of using minii/db library Solve database connection problem: a practical case of using minii/db library Apr 18, 2025 am 07:09 AM

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

How to optimize website performance: Experiences and lessons learned from using the Minify library How to optimize website performance: Experiences and lessons learned from using the Minify library Apr 17, 2025 pm 11:18 PM

In the process of developing a website, improving page loading has always been one of my top priorities. Once, I tried using the Miniify library to compress and merge CSS and JavaScript files in order to improve the performance of the website. However, I encountered many problems and challenges during use, which eventually made me realize that Miniify may no longer be the best choice. Below I will share my experience and how to install and use Minify through Composer.

Accelerate PHP code inspection: Experience and practice using overtrue/phplint library Accelerate PHP code inspection: Experience and practice using overtrue/phplint library Apr 17, 2025 pm 11:06 PM

During the development process, we often need to perform syntax checks on PHP code to ensure the correctness and maintainability of the code. However, when the project is large, the single-threaded syntax checking process can become very slow. Recently, I encountered this problem in my project. After trying multiple methods, I finally found the library overtrue/phplint, which greatly improves the speed of code inspection through parallel processing.

See all articles