From f026dae4f2288fe0865ced3645a4043c1ee75802 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Sat, 8 Dec 2001 12:27:01 +0000 Subject: [PATCH] @- Added -w option to the cgi-version. This will remove all comments and @ whitespace from teh script. (Thies) --- sapi/cgi/cgi_main.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 527cb0159e..ca83c2fd70 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -80,11 +80,12 @@ #define PHP_MODE_HIGHLIGHT 2 #define PHP_MODE_INDENT 3 #define PHP_MODE_LINT 4 +#define PHP_MODE_STRIP 5 extern char *ap_php_optarg; extern int ap_php_optind; -#define OPTSTRING "aCc:d:ef:g:hilmnqs?vz:" +#define OPTSTRING "aCc:d:ef:g:hilmnqsw?vz:" static int _print_module_info(zend_module_entry *module, void *arg TSRMLS_DC) { @@ -254,6 +255,7 @@ static void php_cgi_usage(char *argv0) php_printf("Usage: %s [-q] [-h] [-s [-v] [-i] [-f ] | { [args...]}\n" " -q Quiet-mode. Suppress HTTP Header output.\n" " -s Display colour syntax highlighted source.\n" + " -w Display source with stripped comments and whitespace.\n" " -f Parse . Implies `-q'\n" " -v Version number\n" " -C Do not chdir to the script's directory\n" @@ -628,6 +630,10 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine exit(1); break; + case 'w': + behavior=PHP_MODE_STRIP; + break; + case 'z': /* load extension file */ zend_load_extension(ap_php_optarg); break; @@ -755,6 +761,13 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine zend_printf("Errors parsing %s\n", file_handle.filename); } break; + case PHP_MODE_STRIP: + if (open_file_for_scanning(&file_handle TSRMLS_CC)==SUCCESS) { + zend_strip(TSRMLS_C); + fclose(file_handle.handle.fp); + } + return SUCCESS; + break; case PHP_MODE_HIGHLIGHT: { zend_syntax_highlighter_ini syntax_highlighter_ini; -- 2.50.1