From: krakjoe Date: Thu, 14 Nov 2013 18:50:34 +0000 (+0000) Subject: help for command line options X-Git-Tag: php-5.6.0alpha1~110^2~324 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd956373ba1bd321ca68a974452e9f86b4aa9d94;p=php help for command line options --- diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index e8d6156a85..5442973104 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -525,6 +525,19 @@ static PHPDBG_COMMAND(help) /* {{{ */ phpdbg_writeln("\t%s\t%s", help_command->name, help_command->tip); ++help_command; } + + phpdbg_notice("Command Line Options and Flags"); + phpdbg_writeln("\tOption\tExample\t\t\tPurpose"); + phpdbg_writeln(EMPTY); + phpdbg_writeln("\t-c\t-c/my/php.ini\t\tSet php.ini file to load"); + phpdbg_writeln("\t-d\t-dmemory_limit=4G\tSet a php.ini directive"); + phpdbg_writeln("\t-n\t-N/A\t\t\tDisabled default php.ini"); + phpdbg_writeln("\t-e\t-emytest.php\t\tSet execution context"); + phpdbg_writeln("\t-v\tN/A\t\t\tEnable opline output while executing"); + phpdbg_writeln("\t-s\tN/A\t\t\tEnable stepping"); + phpdbg_writeln("\t-b\tN/A\t\t\tDisable the use of colours"); + phpdbg_writeln("\t-i\t-imy.init\t\tSet the phpdbginit file"); + phpdbg_writeln("\t-I\tN/A\t\t\tDisable loading .phpdbginit"); } phpdbg_notice("Please report bugs to <%s>", PHPDBG_ISSUES); diff --git a/tutorials/phpdbg.png b/tutorials/phpdbg.png index 829bbba894..e204fb48e4 100644 Binary files a/tutorials/phpdbg.png and b/tutorials/phpdbg.png differ