wpdb::timer_start()
Starts the timer, for debugging purposes.
{} It's a method of the class: wpdb{}
No Hooks.
Return
true
.
Usage
global $wpdb; $wpdb->timer_start();
Changelog
Since 1.5.0 | Introduced. |
Code of wpdb::timer_start() wpdb::timer start WP 6.0
public function timer_start() { $this->time_start = microtime( true ); return true; }