mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
prototype fixes
removed method field_tell (which is already property current_field)
This commit is contained in:
parent
5294a539e2
commit
429aa55248
2 changed files with 2 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -218,7 +218,6 @@ function_entry mysqli_result_methods[] = {
|
|||
PHP_FALIAS(fetch_row,mysqli_fetch_row,NULL)
|
||||
PHP_FALIAS(field_count,mysqli_field_count,NULL)
|
||||
PHP_FALIAS(field_seek,mysqli_field_seek,NULL)
|
||||
PHP_FALIAS(field_tell,mysqli_field_tell,NULL)
|
||||
PHP_FALIAS(free_result,mysqli_free_result,NULL)
|
||||
{NULL, NULL, NULL}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue