mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
[ci skip] Remove space between function name and open parentheses
This commit is contained in:
parent
a2c7c46d5e
commit
5f54f48024
6 changed files with 36 additions and 36 deletions
|
@ -1181,7 +1181,7 @@ static void php_add_field_properties(zval *value, const MYSQL_FIELD *field)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto mixed mysqli_fetch_field (object result)
|
||||
/* {{{ proto mixed mysqli_fetch_field(object result)
|
||||
Get column information from a result and return as an object */
|
||||
PHP_FUNCTION(mysqli_fetch_field)
|
||||
{
|
||||
|
@ -1204,7 +1204,7 @@ PHP_FUNCTION(mysqli_fetch_field)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto mixed mysqli_fetch_fields (object result)
|
||||
/* {{{ proto mixed mysqli_fetch_fields(object result)
|
||||
Return array of objects containing field meta-data */
|
||||
PHP_FUNCTION(mysqli_fetch_fields)
|
||||
{
|
||||
|
@ -1234,7 +1234,7 @@ PHP_FUNCTION(mysqli_fetch_fields)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto mixed mysqli_fetch_field_direct (object result, int offset)
|
||||
/* {{{ proto mixed mysqli_fetch_field_direct(object result, int offset)
|
||||
Fetch meta-data for a single field */
|
||||
PHP_FUNCTION(mysqli_fetch_field_direct)
|
||||
{
|
||||
|
@ -1263,7 +1263,7 @@ PHP_FUNCTION(mysqli_fetch_field_direct)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto mixed mysqli_fetch_lengths (object result)
|
||||
/* {{{ proto mixed mysqli_fetch_lengths(object result)
|
||||
Get the length of each output in a result */
|
||||
PHP_FUNCTION(mysqli_fetch_lengths)
|
||||
{
|
||||
|
@ -1295,7 +1295,7 @@ PHP_FUNCTION(mysqli_fetch_lengths)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto array mysqli_fetch_row (object result)
|
||||
/* {{{ proto array mysqli_fetch_row(object result)
|
||||
Get a result row as an enumerated array */
|
||||
PHP_FUNCTION(mysqli_fetch_row)
|
||||
{
|
||||
|
@ -1396,7 +1396,7 @@ PHP_FUNCTION(mysqli_get_client_version)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto string mysqli_get_host_info (object link)
|
||||
/* {{{ proto string mysqli_get_host_info(object link)
|
||||
Get MySQL host info */
|
||||
PHP_FUNCTION(mysqli_get_host_info)
|
||||
{
|
||||
|
@ -2669,7 +2669,7 @@ PHP_FUNCTION(mysqli_use_result)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto int mysqli_warning_count (object link)
|
||||
/* {{{ proto int mysqli_warning_count(object link)
|
||||
Return number of warnings from the last query for the given link */
|
||||
PHP_FUNCTION(mysqli_warning_count)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue