mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
eval()
This commit is contained in:
parent
5c866a9f13
commit
2977840a4a
5 changed files with 34 additions and 1 deletions
|
@ -36,6 +36,7 @@ PHPDBG_HELP(compile);
|
|||
PHPDBG_HELP(step);
|
||||
PHPDBG_HELP(next);
|
||||
PHPDBG_HELP(run);
|
||||
PHPDBG_HELP(eval);
|
||||
PHPDBG_HELP(print);
|
||||
PHPDBG_HELP(break);
|
||||
|
||||
|
@ -48,6 +49,7 @@ static const phpdbg_command_t phpdbg_help_commands[] = {
|
|||
PHPDBG_HELP_D(step, "stepping through execution allows inspection of the opline after every opcode"),
|
||||
PHPDBG_HELP_D(next, "execute the next opcode"),
|
||||
PHPDBG_HELP_D(run, "execution inside the phpdbg vm allows detailed inspection and debugging"),
|
||||
PHPDBG_HELP_D(eval, "access to eval() allows you to affect the environment during execution"),
|
||||
PHPDBG_HELP_D(print, "printing allows inspection of the execution environment"),
|
||||
PHPDBG_HELP_D(break, "breakpoints allow execution interruption"),
|
||||
{NULL, 0, 0}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue