1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 23:18:13 +02:00
This commit is contained in:
foobar
2001-04-01 05:55:21 +00:00
parent f663f1edab
commit aea8e80a62
+10 -9
View File
@@ -472,17 +472,18 @@ PHP_MINFO_FUNCTION(ifx)
maxl[15]=0;
}
php_info_print_table_start();
php_info_print_table_header(2, "Informix support", "enabled");
sprintf(buf, "%ld", IFXG(num_persistent));
php_info_print_table_row(2, "Persistent links", buf);
sprintf(buf, "%ld", IFXG(num_links));
php_info_print_table_row(2, "Total links", buf);
sprintf(buf, "%02.2f", (double)(IFX_VERSION/100.0));
php_info_print_table_row(2, "ESQL/C Version", buf);
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
php_printf("<table border=\"5\" width=\"600\">\n");
php_info_print_table_header(2, "Key", "Value");
sprintf(buf, "%ld", IFXG(num_persistent));
php_info_print_table_row(2, "Persistent links : ", buf);
sprintf(buf, "%ld", IFXG(num_links));
php_info_print_table_row(2, "Total links : ", buf);
sprintf(buf, "%02.2f", (double)(IFX_VERSION/100.0));
php_info_print_table_row(2, "ESQL/C Version: ", buf);
php_printf("</table>\n");
}
static void php3_ifx_set_default_link(int id)