wpdb::timer_start()
Starts the timer, for debugging purposes.
Метод класса: wpdb{}
Хуков нет.
Возвращает
true
.
Использование
global $wpdb; $wpdb->timer_start();
Список изменений
С версии 1.5.0 | Введена. |
Код wpdb::timer_start() wpdb::timer start WP 6.7.1
public function timer_start() { $this->time_start = microtime( true ); return true; }