mysqli_warning::__construct

(PHP 5, PHP 7) The __construct purpose public mysqli_warning::__construct ( void ) Returns: This function is currently not documented; only its argument list is available.

mysqli_driver::$report_mode

(PHP 5, PHP 7) Enables or disables internal report functions bool mysqli_report ( int $flags ) Object oriented style int $mysqli_driver->report_mode ; Procedural style A function helpful in improving queries during code development and testing. Depending on the flags, it reports errors from mysqli function calls or queries that don't use an index (or use a bad index). Parameters:

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_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::$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_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_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::$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::fetch_row

(PHP 5, PHP 7) Get a result row as an enumerated array mixed mysqli_result::fetch_row ( void ) Object oriented style Procedural style mixed mysqli_fetch_row ( mysqli_result $result ) Fetches one row of data from the result set and returns it as an enumerated array, where each column is stored in an array offset starting from 0 (zero). Each subsequent call to this function will return the next row within the result set, or N