diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2003-03-17 12:48:38 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2003-03-17 12:48:38 +0000 |
commit | 6f24340f22275d449a7b1573a7bd05cfaf499a6a (patch) | |
tree | 649f7bd812842876c73e5ed461d7b963ecf7dad6 /ext/mysqli/mysqli_api.c | |
parent | 9f3a46a12ed2e4fec00da1444ba6e579eabef9f7 (diff) | |
download | php-git-6f24340f22275d449a7b1573a7bd05cfaf499a6a.tar.gz |
more proto fixes
Diffstat (limited to 'ext/mysqli/mysqli_api.c')
-rw-r--r-- | ext/mysqli/mysqli_api.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 0af01451f2..323279022b 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -634,7 +634,7 @@ PHP_FUNCTION(mysqli_errno) } /* }}} */ -/* {{{ proto string mysql_error(resource link) +/* {{{ proto string mysqli_error(resource link) Returns the text of the error message from previous MySQL operation */ PHP_FUNCTION(mysqli_error) { @@ -766,7 +766,7 @@ PHP_FUNCTION(mysqli_fetch) } /* }}} */ -/* {{{ proto int mysql_fetch_field (resource result) +/* {{{ proto int mysqli_fetch_field (resource result) Get column information from a result and return as an object */ PHP_FUNCTION(mysqli_fetch_field) { @@ -799,7 +799,7 @@ PHP_FUNCTION(mysqli_fetch_field) } /* }}} */ -/* {{{ proto int mysql_fetch_fields (resource result) +/* {{{ proto int mysqli_fetch_fields (resource result) */ PHP_FUNCTION(mysqli_fetch_fields) { @@ -845,7 +845,7 @@ PHP_FUNCTION(mysqli_fetch_fields) } /* }}} */ -/* {{{ proto int mysql_fetch_field_direct (resource result, int offset) +/* {{{ proto int mysqli_fetch_field_direct (resource result, int offset) */ PHP_FUNCTION(mysqli_fetch_field_direct) { @@ -1098,7 +1098,7 @@ PHP_FUNCTION(mysqli_info) } /* }}} */ -/* {{{ resource mysqli_init(void) +/* {{{ proto resource mysqli_init(void) initialize mysqli */ PHP_FUNCTION(mysqli_init) { @@ -1775,7 +1775,7 @@ PHP_FUNCTION(mysqli_stmt_error) } /* }}} */ -/* {{{ bool resource mysqli_stmt_store_result(stmt) +/* {{{ proto resource mysqli_stmt_store_result(stmt) */ PHP_FUNCTION(mysqli_stmt_store_result) { |