mysqli_bind_result

(PHP 5 < 5.4.0) Alias for mysqli_stmt_bind_result() This function is an alias of mysqli_stmt_bind_result(). This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. See also: mysqli_stmt_bind_result() -

mysqli::disable_reads_from_master

(PHP 5 < 5.3.0) Disable reads from master void mysqli::disable_reads_from_master ( void ) Object oriented style Procedural style bool mysqli_disable_reads_from_master ( mysqli $link ) This function is currently not documented; only its argument list is available. This function has been DEPRECATED and REMOVED as of PHP 5.3.0.

mysqli_result::$field_count

(PHP 5, PHP 7) Get the number of fields in a result int mysqli_num_fields ( mysqli_result $result ) Object oriented style int $mysqli_result->field_count; Procedural style Returns the number of fields from specified result set. Parameters: result Procedural style only: A result set identifier returned by mysqli_query(), mysqli_store_result() or mysqli_use_result().

mysqli_result::free

(PHP 5, PHP 7) Frees the memory associated with a result void mysqli_result::free ( void ) Object oriented style void mysqli_result::close ( void ) void mysqli_result::free_result ( void ) Procedural style void mysqli_free_result ( mysqli_result $result ) Frees the memory associated with the result. Note: You should always free your result with mysqli_free_result(), when your result object is not needed anymore.

mysqli_result::field_seek

(PHP 5, PHP 7) Set result pointer to a specified field offset bool mysqli_result::field_seek ( int $fieldnr ) Object oriented style Procedural style bool mysqli_field_seek ( mysqli_result $result , int $fieldnr ) Sets the field cursor to the given offset. The next call to mysqli_fetch_field() will retrieve the field definition of the column associated with that offset. Note: To seek to the beginning of a row, pass an of

mysqli_result::$num_rows

(PHP 5, PHP 7) Gets the number of rows in a result int mysqli_num_rows ( mysqli_result $result ) Object oriented style int $mysqli_result->num_rows; Procedural style Returns the number of rows in the result set. The behaviour of mysqli_num_rows() depends on whether buffered or unbuffered result sets are being used. For unbuffered result sets, mysqli_num_rows() will not return the correct number of rows until all the ro

mysqli_driver::embedded_server_end

(PHP 5, PHP 7) Stop embedded server void mysqli_driver::embedded_server_end ( void ) Object oriented style Procedural style void mysqli_embedded_server_end ( void ) This function is currently not documented; only its argument list is available.

mysqli_result::$lengths

(PHP 5, PHP 7) Returns the lengths of the columns of the current row in the result set array mysqli_fetch_lengths ( mysqli_result $result ) Object oriented style array $mysqli_result->lengths; Procedural style The mysqli_fetch_lengths() function returns an array containing the lengths of every column of the current row within the result set. Parameters: result Procedur

mysqli_driver::embedded_server_start

(PHP 5, PHP 7) Initialize and start embedded server bool mysqli_driver::embedded_server_start ( bool $start, array $arguments, array $groups ) Object oriented style Procedural style bool mysqli_embedded_server_start ( bool $start , array $arguments , array $groups ) This function is currently not documented; only its argument list is available.

mysqli_result::fetch_object

(PHP 5, PHP 7) Returns the current row of a result set as an object object mysqli_result::fetch_object ([ string $class_name = "stdClass" [, array $params ]] ) Object oriented style Procedural style object mysqli_fetch_object ( mysqli_result $result [, string $class_name = "stdClass" [, array $params ]] ) The mysqli_fetch_object() will return the current row result set as an object where the attributes of the object repres