From: Sander Roobol Date: Thu, 9 May 2002 09:36:45 +0000 (+0000) Subject: Added the current SAPI to the output of php -v X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7586cdc65460ff15acc2bfcfcb3bec49239fd296;p=php Added the current SAPI to the output of php -v --- diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 6da5a80574..d044c95dd1 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -875,7 +875,7 @@ consult the installation file that came with this distribution, or visit \n\ SG(headers_sent) = 1; SG(request_info).no_headers = 1; } - php_printf("%s\n", PHP_VERSION); + php_printf("%s (%s)\n", PHP_VERSION, sapi_module.name); php_end_ob_buffers(1 TSRMLS_CC); exit(1); break; diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 8299ba919c..55f9f38031 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -523,7 +523,7 @@ int main(int argc, char *argv[]) SG(headers_sent) = 1; SG(request_info).no_headers = 1; } - php_printf("%s\n", PHP_VERSION); + php_printf("%s (%s)\n", PHP_VERSION, sapi_module.name); php_end_ob_buffers(1 TSRMLS_CC); exit(1); break;