Browse Source

- Make clear what -a mode gets you

PHP-5.1
Marcus Boerger 21 years ago
parent
commit
575e6b6e7c
  1. 4
      sapi/cli/php_cli.c

4
sapi/cli/php_cli.c

@ -774,7 +774,11 @@ int main(int argc, char *argv[])
case 'a': /* interactive mode */
if (!interactive) {
#if (HAVE_LIBREADLINE || HAVE_LIBEDIT) && !defined(COMPILE_DL_READLINE)
printf("Interactive shell\n\n");
#else
printf("Interactive mode enabled\n\n");
#endif
fflush(stdout);
interactive=1;
}

Loading…
Cancel
Save