From: krakjoe Date: Sun, 24 Nov 2013 07:01:50 +0000 (+0000) Subject: add help for break op command X-Git-Tag: php-5.6.0alpha1~110^2~104^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b80baeb25e2f68675485fef6ef65f371cd44cf40;p=php add help for break op command --- diff --git a/phpdbg_help.c b/phpdbg_help.c index b8dc23cf42..9f56dbc1fd 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -243,6 +243,10 @@ PHPDBG_HELP(break) /* {{{ */ phpdbg_writeln("\t%sb on ($expression == true)", PROMPT); phpdbg_writeln("\tWill break when the condition evaluates to true"); phpdbg_writeln(EMPTY); + phpdbg_writeln("\t%sbreak op ZEND_ADD", PROMPT); + phpdbg_writeln("\t%sb O ZEND_ADD", PROMPT); + phpdbg_writeln("\tWill break on every occurence of the opcode provided"); + phpdbg_writeln(EMPTY); phpdbg_writeln("Note: An address is only valid for the current compilation"); phpdbg_writeln(EMPTY); phpdbg_notice("The parameters enclosed by [] are usually optional, but help avoid ambigious commands");