Home Backend Development PHP Tutorial A powerful tool for PHP debugging: PHPDBG_php skills

A powerful tool for PHP debugging: PHPDBG_php skills

May 16, 2016 pm 07:58 PM
php debug

PHPDBG is a PHP SAPI module that can control the PHP operating environment without modifying the code or affecting performance.

PHPDBG aims to become a lightweight, powerful and easy-to-use PHP debugging platform. Can be used in PHP5.4 and above. In php5.6 and above versions will be integrated internally.

Main functions:

– Single-step debugging

– Flexible breakpoint method (class method, function, file: line, memory address, opcode)

– You can directly call php’s eval

– You can view the currently executing code

– User Space API (userland/user space)

– Easy to integrate

– Support specified php configuration file

– JIT global variables

– readline support (optional), terminal operation is more convenient

– Remote debugging, using java GUI

– Easy to operate (see help for details)

Install
In order to use phpdgb, you first need to download a php source code package. Then download the source code package of phpdgb and place it in the sapi directory of the php source code package. Finally, you can execute the installation command. The compilation and installation example is as follows:

Suppose we have downloaded the source code package of php and placed it in the /home/php directory.

#cd /home/php/sapi
#git clone https://github.com/krakjoe/phpdbg
#cd ../
#./buildconf --force
#./config.nice
#make -j8
#make install-phpdbg
Copy after login

Note:

1. If your php version is php5.6 or higher, phpdbg has been integrated into the php code package, and there is no need to download it separately.

2. Remember to add –enable-phpdbg in the compilation parameters.

3. The compile-time parameter, –with-readline can be optionally added. If you do not add it, phpdbg's history and other functions cannot be used.

Basic usage
1. Parameter introduction
phpdbg is a sapi of php, which can debug php from the command line. Commonly used parameters are as follows:

The following switches are implemented (just like cli SAPI):

-n ignore php ini

-c search for php ini in path

-z load zend extension

-d define php ini entry

The following switches change the default behavior of phpdbg:

-v disables quietness

-s enabled stepping

-e sets execution context

-b boring – disables use of color on the console

-I ignore .phpdbginit (default init file)

-i override .phpgdbinit location (implies -I)

-O set oplog output file

-q do not print banner on startup

-r jump straight to run

-E enable step through eval()

Note: passing -rr will cause phpdbg to quit after execution, rather than returning to the console

2. Common functions
We introduced the gdb tool before. In fact, the functions of phpdbg and gdb are very similar in some places. For example, you can set breakpoints, step through, etc. It's just that their debugging languages ​​are different. Gdb focuses on debugging c or c language, while phpdbg focuses on debugging php language. Below we will introduce some common debugging functions of phpdbg. The code to be debugged is as follows:

The source code of the file test_phpdbg_inc.php is as follows:

<&#63;php 
function phpdbg_inc_func()
{   
  echo "phpdbg_inc_func \n"; 
} 
&#63;>
Copy after login

The source code of the file test_phpdgb.php is as follows:

<&#63;php 
  include(dirname(__FILE__)."/test_phpdbg_inc.php"); 
  class demo{   
    public function __construct(){
       echo __METHOD__.":".__LINE__."\n";   
    }
    public function func($param){
       $param++;
       echo "method func $param\n";
    }
    public function __destruct(){
       echo __METHOD__.":".__LINE__."\n";
    }
  } 

 function func(){   
   $param = "ali";
   $param = $param + "baba";
   echo "function func $param\n";
 }

 $demo = new demo();
 $demo->func(1);
 func();
 phpdbg_inc_func();
&#63;>

Copy after login

3. Start phpdbg

After phpdbg is successfully installed, it will be in the bin directory of the installation directory. Enter the bin directory and enter phpdbg directly. As follows:

#phpdeg
[Welcome to phpdbg, the interactive PHP debugger, v0.4.0]
To get help using phpdbg type "help" and press enter
[Please report bugs to <http://github.com/krakjoe/phpdbg/issues>]
prompt>
Copy after login

To load the php script to be debugged, just execute the exec command. As follows:

#phpdbg
......
prompt> exec ./test_phpdbg.php
Copy after login

Of course we can also specify the e parameter when starting phpdbg. As follows:

#phpdbg -e ./test_phpdbg.php
Copy after login

4. View help information

If you have used other debugging tools before, you will find that phpdbg is similar to them. However, when you first use it, you will still often need to get help information. We can get help information through the help command.

......
prompt> help

phpdbg is a lightweight, powerful and easy to use debugging platform for PHP5.4+
It supports the following commands:

Information
 list   list PHP source
......

Copy after login

5. Set breakpoints

The command to set breakpoints is the same as gdb. They are all break, and the abbreviation is b. However, the specific command parameters are still different. Similar to gdb's breakpoint command, they can set breakpoints "by file name: line number" or line number. In addition, phpdbg also provides some methods for setting breakpoints specific to PHP. For example, set breakpoints based on opline, set breakpoints based on opcode, etc.

As we all know, PHP code is eventually parsed into opcode and then executed one by one by the PHP kernel. A PHP statement may be parsed into multiple opcodes. If we can set breakpoints by opcode, we can track the program execution process more accurately. Let's take a look at a specific example of setting breakpoints with phapdbg.

Set breakpoints by opline:

The opline mentioned here is the line number of the current code starting from the method entrance. For example, in the test_phpdgb.php file, the opline of the code "$param = $param "baba";" on line 18 is 2.

......
prompt> b func#2
prompt> r
demo::__construct:5
method func 2
[Breakpoint #0 resolved at func#2 (opline 0x7f5b230a2e38)]
[Breakpoint #0 resolved at func#2 (opline 0x7f5b230a2e38)]
[Breakpoint #0 resolved at func#2 (opline 0x7f5b230a2e38)]
[Breakpoint #0 in func()#2 at ./test_phpdbg.php:18, hits: 1]
>00018:   $param = $param + "baba";
 00019:   echo "function func $param\n";;
 00020: }
......
Copy after login

6. View breakpoints

Like gdb, phpdbg also uses the info break command to view breakpoints. An example is as follows:

....
prompt> info break
------------------------------------------------
File Breakpoints:
#1   /home/hailong.xhl/test_phpdbg.php:10
------------------------------------------------
Opline Breakpoints:
#0   7ff3219e1df0    (function breakpoint)
------------------------------------------------
Function opline Breakpoints:
#0   func opline 2
....
Copy after login

通过上面的显示,我们可以知道。info break的显示结果中会把断点的类型也给显示出来。#后面的数字是断点号。我们可以根据断点号删除断点。

7、删除断点

和gdb命令不一样。phpdbg的删除断点不是delete命令,而是break del 命令。示例如下:

......
prompt> break del 1
[Deleted breakpoint #1]
prompt>
......
Copy after login

break del 后面的数字1就是断点号。

8、查看代码

phpdbg查看代码的命令也是list。但是和gdb相比,使用的方式更多样一些。

显示指定函数的代码:

......
prompt> l f func
 00017:   $param = "ali";
 00018:   $param = $param + "baba";
 00019:   echo "function func $param\n";;
 00020: }
 00021:
prompt>
......
Copy after login

单步执行

phpdbg的单步执行只有一个命令 step。和gdb的step命令差不多。都是一行一行的执行代码。注意,phpdbg是没有next命令的。

....
prompt> s
[Breakpoint #0 resolved at func#2 (opline 0x152ba40)]
[L19      0x152ba70 ZEND_ADD_STRING     C2   @0  ./test_phpdbg.php]
>00019:   echo "function func $param\n";;
 00020: }
 00021:
....
Copy after login

继续执行

和gdb一样,phpdbg的继续执行命令也是continue,简写形式为c。

执行php代码

这个是phpdbg的一个特色。可以在调试的过程中使用ev命令执行任意的php代码。如:

......
prompt> ev $var = "val";
val
prompt> ev var_dump($var);
string(3) "val"
......
Copy after login

可以通过这种方式,在调试过程中动态的修改变量值,查看执行效果。

以上就是本文的全部内容,轻松玩转调试利器PHPDBG,希望大家喜欢。

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles