diff options
author | Georg Richter <georg@php.net> | 2004-01-27 13:23:54 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2004-01-27 13:23:54 +0000 |
commit | 429aa55248838c7827ab41ae2ffe7749a7d2228d (patch) | |
tree | ef97a76b7fab12482f981b33701c15e43f1b3264 /ext/mysqli/mysqli_api.c | |
parent | 5294a539e279c9a262a404909b4ea5b459accc6e (diff) | |
download | php-git-429aa55248838c7827ab41ae2ffe7749a7d2228d.tar.gz |
prototype fixes
removed method field_tell (which is already property current_field)
Diffstat (limited to 'ext/mysqli/mysqli_api.c')
-rw-r--r-- | ext/mysqli/mysqli_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 41a378c369..f0b30b2c4b 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -1229,7 +1229,7 @@ PHP_FUNCTION(mysqli_ping) } /* }}} */ -/* {{{ proto resource mysqli_prepare(object link, string query) +/* {{{ proto mixed mysqli_prepare(object link, string query) Prepare a SQL statement for execution */ PHP_FUNCTION(mysqli_prepare) { @@ -1261,7 +1261,7 @@ PHP_FUNCTION(mysqli_prepare) } /* }}} */ -/* {{{ proto resource mysqli_get_metadata(object stmt) +/* {{{ proto mixed mysqli_get_metadata(object stmt) return result set from statement */ PHP_FUNCTION(mysqli_get_metadata) { |