diff options
author | Sean Bright <elixer@php.net> | 2001-01-31 22:04:30 +0000 |
---|---|---|
committer | Sean Bright <elixer@php.net> | 2001-01-31 22:04:30 +0000 |
commit | 31c8104dc66064015a867447a631c77610bc8f7e (patch) | |
tree | f4311735b3b81bb80463fb6d91d5d57ed1ef3bad /ext/mysql/php_mysql.h | |
parent | 0611acb910003f86287f0a0e0163f42bce9b1e62 (diff) | |
download | php-git-31c8104dc66064015a867447a631c77610bc8f7e.tar.gz |
Added the mysql_get_*_info() functions.
# If anyone knows of a version of mysql lower then 3.20.32 that implements
# all 3 of these functions, please change the conditionals.
@- Added mysql_get_client_info(), mysql_get_server_info(),
@ mysql_get_proto_info(), and mysql_get_host_info() functions. (Sean)
Diffstat (limited to 'ext/mysql/php_mysql.h')
-rw-r--r-- | ext/mysql/php_mysql.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/mysql/php_mysql.h b/ext/mysql/php_mysql.h index 6d7a1a8611..41957489b7 100644 --- a/ext/mysql/php_mysql.h +++ b/ext/mysql/php_mysql.h @@ -76,6 +76,10 @@ PHP_FUNCTION(mysql_field_len); PHP_FUNCTION(mysql_field_type); PHP_FUNCTION(mysql_field_flags); PHP_FUNCTION(mysql_escape_string); +PHP_FUNCTION(mysql_get_client_info); +PHP_FUNCTION(mysql_get_host_info); +PHP_FUNCTION(mysql_get_proto_info); +PHP_FUNCTION(mysql_get_server_info); ZEND_BEGIN_MODULE_GLOBALS(mysql) long default_link; |