diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-04-21 21:28:02 +0100 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-04-21 21:28:02 +0100 |
commit | bb0f0347dd99d42be923d5f61bc13e86df7cb8d4 (patch) | |
tree | bed0106b0cec313d15f3f1e4dee35f932a3902df /phpdbg_help.c | |
parent | 0873f2bfb4f8ad0ecd5f4ae7805828ed34bc1565 (diff) | |
parent | 577c6ed0ce9983967622d8b7086dab0a4978a148 (diff) | |
download | php-git-bb0f0347dd99d42be923d5f61bc13e86df7cb8d4.tar.gz |
Merge branch 'master' of https://github.com/krakjoe/phpdbg
Diffstat (limited to 'phpdbg_help.c')
-rw-r--r-- | phpdbg_help.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/phpdbg_help.c b/phpdbg_help.c index f912f46787..32a78cb063 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -325,6 +325,7 @@ phpdbg_help_text_t phpdbg_help_text[] = { "**Starting and Stopping Execution**" CR " **exec** set execution context" CR " **run** attempt execution" CR +" **step** continue execution until other line is reached" CR " **continue** continue execution" CR " **until** continue execution up to the given location" CR " **finish** continue up to end of the current execution frame" CR @@ -862,20 +863,12 @@ phpdbg_help_text_t phpdbg_help_text[] = { }, {"step", -"You can enable and disable **stepping** mode at the phpdbg prompt during execution. When " -"stepping mode is enabled, execution will be step through opcode by opcode." CR CR +"Execute opcodes until beginning on next line" CR CR "**Examples**" CR CR -" $P step 1" CR -" $P s 1" CR -" Will enable stepping" CR CR -"While stepping is enabled you are presented with an interactive prompt after the execution of " -"each opcode." CR CR - -"Note that when executing the **finish** and **leave** commands, and oplines within the current " -"execution frame will be skipped in line with the command behaviour. Stepping will resume on exit " -"from the current frame." +" $P s" CR +" Will continue and break again in the next encountered line" CR CR }, {"until", |