From: Derick Rethans Date: Thu, 9 May 2002 11:56:52 +0000 (+0000) Subject: - Add PHP_API_VERSION too X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f58ad95c003c33009479495a253b38c490741a1e;p=php - Add PHP_API_VERSION too --- diff --git a/ext/standard/info.c b/ext/standard/info.c index adaac65ac7..1b7328813d 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -207,12 +207,14 @@ PHPAPI void php_print_info(int flag TSRMLS_DC) int expose_php = INI_INT("expose_php"); time_t the_time; struct tm *ta, tmbuf; + char php_api_no[9]; char mod_api_no[9]; char ext_api_no[9]; the_time = time(NULL); ta = php_localtime_r(&the_time, &tmbuf); + snprintf (php_api_no, 9, "%d", PHP_API_VERSION); snprintf (mod_api_no, 9, "%d", ZEND_MODULE_API_NO); snprintf (ext_api_no, 9, "%d", ZEND_EXTENSION_API_NO); @@ -258,6 +260,7 @@ PHPAPI void php_print_info(int flag TSRMLS_DC) php_info_print_table_row(2, "Configuration File (php.ini) Path", php_ini_opened_path?php_ini_opened_path:PHP_CONFIG_FILE_PATH); + php_info_print_table_row(2, "PHP API No.", php_api_no); php_info_print_table_row(2, "PHP Extensions API No.", mod_api_no); php_info_print_table_row(2, "Zend Extensions API No.", ext_api_no);