wpdb::timer_start()publicWP 1.5.0

Starts the timer, for debugging purposes.

Метод класса: wpdb{}

Хуков нет.

Возвращает

true.

Использование

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

Список изменений

С версии 1.5.0 Введена.

Код wpdb::timer_start() WP 6.5.2

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