/* phpdbg options */
{'q', 0, "no banner"},
{'v', 0, "disable quietness"},
- {'s', 0, "enable stepping"},
{'b', 0, "boring colours"},
{'i', 1, "specify init"},
{'I', 0, "ignore init"},
long cleaning = -1;
zend_bool quit_immediately = 0;
zend_bool remote = 0;
- int step = 0;
zend_phpdbg_globals *settings = NULL;
char *bp_tmp = NULL;
char *address;
php_optarg = NULL;
php_optind = 1;
opt = 0;
- step = 0;
sapi_name = NULL;
if (settings) {
exec = settings->exec;
flags &= ~PHPDBG_IS_QUIET;
break;
- case 's': /* set stepping on */
- step = 1;
- break;
-
case 'E': /* stepping through eval on */
flags |= PHPDBG_IS_STEPONEVAL;
break;
goto phpdbg_out;
}
- /* step from here, not through init */
- if (step) {
- PHPDBG_G(flags) |= PHPDBG_IS_STEPPING;
- }
-
phpdbg_fully_started = 1;
/* #ifndef for making compiler shutting up */
" **-n** Disable default php.ini" CR
" **-q** Suppress welcome banner" CR
" **-v** Enable oplog output" CR
-" **-s** Enable stepping" CR
" **-b** Disable colour" CR
" **-i** **-i**my.init Set .phpdbginit file" CR
" **-I** Ignore default .phpdbginit" CR