Changeset 47060 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 01/11/2020 06:30:58 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r46696 r47060 1436 1436 * 1437 1437 * @since 0.71 1438 * @global array $EZSQL_ERROR Stores error information of query and error string 1439 * 1440 * @param string $str The error to display 1441 * @return false|void False if the showing of errors isdisabled.1438 * @global array $EZSQL_ERROR Stores error information of query and error string. 1439 * 1440 * @param string $str The error to display. 1441 * @return void|false Void if the showing of errors is enabled, false if disabled. 1442 1442 */ 1443 1443 public function print_error( $str = '' ) { … … 3412 3412 * @since 1.5.0 3413 3413 * 3414 * @return float Total time spent on the query, in seconds 3414 * @return float Total time spent on the query, in seconds. 3415 3415 */ 3416 3416 public function timer_stop() { … … 3425 3425 * @since 1.5.0 3426 3426 * 3427 * @param string $message The Error message3428 * @param string $error_code Optional. A Computerreadable string to identify the error.3429 * @return false|void3427 * @param string $message The error message. 3428 * @param string $error_code Optional. A computer-readable string to identify the error. 3429 * @return void|false Void if the showing of errors is enabled, false if disabled. 3430 3430 */ 3431 3431 public function bail( $message, $error_code = '500' ) {
Note: See TracChangeset
for help on using the changeset viewer.