timer_start
Start the WordPress micro-timer.
Description
timer_start();
Usage
if ( !function_exists( 'timer_start' ) ) { require_once ABSPATH . WPINC . '/load.php'; } // NOTICE! Understand what this does before running. $result = timer_start();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/load.php
- function timer_start() {
- global $timestart;
- $timestart = microtime( true );
- return true;
- }