]> granicus.if.org Git - php/commitdiff
- Show both API nos
authorDerick Rethans <derick@php.net>
Thu, 9 May 2002 11:47:37 +0000 (11:47 +0000)
committerDerick Rethans <derick@php.net>
Thu, 9 May 2002 11:47:37 +0000 (11:47 +0000)
ext/standard/info.c

index 46ca8327420aadbeb49f0b59f5967b8cf99df37b..adaac65ac706e6d9fb059ef62efde713153c4ca7 100644 (file)
@@ -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 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 (api_no, 9, "%d", ZEND_EXTENSION_API_NO);
+       snprintf (mod_api_no, 9, "%d", ZEND_MODULE_API_NO);
+       snprintf (ext_api_no, 9, "%d", ZEND_EXTENSION_API_NO);
 
        PUTS("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n<html>\n");
 
@@ -256,7 +258,8 @@ 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, "Zend API No.", 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);
 
 #if ZEND_DEBUG
                php_info_print_table_row(2, "Debug Build", "yes" );