We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c717ab commit e84042cCopy full SHA for e84042c
ext/pdo_firebird/pdo_firebird.c
@@ -82,8 +82,12 @@ PHP_MSHUTDOWN_FUNCTION(pdo_firebird) /* {{{ */
82
83
PHP_MINFO_FUNCTION(pdo_firebird) /* {{{ */
84
{
85
+ char version[64];
86
+ isc_get_client_version(version);
87
+
88
php_info_print_table_start();
89
php_info_print_table_header(2, "PDO Driver for Firebird", "enabled");
90
+ php_info_print_table_row(2, "Client Library Version", version);
91
php_info_print_table_end();
92
}
93
/* }}} */
0 commit comments