You appear to be a bot. Output may be restricted
Description
Helper to Convert a microtime string into a float
Usage
WP_UnitTestCase::_microtime_to_float( $microtime );
Parameters
- $microtime
- ( mixed ) required –
Returns
voidSource
File name: oik-batch/tests/testcase.phpLines:
1 to 4 of 4
protected function _microtime_to_float($microtime ){ $time_array = explode( ' ', $microtime ); return array_sum( $time_array ); }View on GitHub