diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-04-13 08:06:42 +0100 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-04-13 08:06:42 +0100 |
commit | ef86b57f3b6745d5215e1316512c108f46df8668 (patch) | |
tree | 5a7c8cf1061c0977ae1c99bce2bc49437d24319c /phpdbg_help.c | |
parent | 2fde2ada50a00512490511349389d08ede9822f8 (diff) | |
parent | 3db29ee43960a4e164244a55b0e2a4b23a112e49 (diff) | |
download | php-git-ef86b57f3b6745d5215e1316512c108f46df8668.tar.gz |
Merge branch 'master' of https://github.com/krakjoe/phpdbg into lexer
Conflicts:
phpdbg_prompt.c
Diffstat (limited to 'phpdbg_help.c')
-rw-r--r-- | phpdbg_help.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/phpdbg_help.c b/phpdbg_help.c index 941d58ce67..72038dc0fd 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -378,7 +378,9 @@ phpdbg_help_text_t phpdbg_help_text[] = { " **-S** **-S**cli Override SAPI name, careful!" CR " **-l** **-l**4000 Setup remote console ports" CR " **-a** **-a**192.168.0.3 Setup remote console bind address" CR -" **-V** Print version number" CR CR +" **-V** Print version number" CR +" **--** **--** arg1 arg2 Use to delimit phpdbg arguments and php $argv; append any $argv " +"argument after it" CR CR "**Remote Console Mode**" CR CR @@ -793,11 +795,13 @@ phpdbg_help_text_t phpdbg_help_text[] = { {"run", "Enter the vm, startinging execution. Execution will then continue until the next breakpoint " -"or completion of the script" +"or completion of the script. Add parameters you want to use as $argv" "**Examples**" CR CR " $P run" CR " $P r" CR -" Will cause execution of the context, if it is set." CR CR +" Will cause execution of the context, if it is set" CR CR +" $P r test" CR +" Will execute with $argv[1] == \"test\"" CR CR "Note that the execution context must be set. If not previously compiled, then the script will " "be compiled before execution." CR CR |