wpdb::timer_start()publicWP 1.5.0

Starts the timer, for debugging purposes.

Method of the class: wpdb{}

No Hooks.

Return

true.

Usage

global $wpdb;
$wpdb->timer_start();

Changelog

Since 1.5.0 Introduced.

wpdb::timer_start() code WP 6.5.2

public function timer_start() {
	$this->time_start = microtime( true );
	return true;
}