function _boost_microtime_float in Boost 6
microtime(TRUE) emulation
2 calls to _boost_microtime_float()
- boost_count_all_files in ./
boost.admin.inc - Count the number of files in a folder
- _boost_rmdir_rf in ./
boost.module - Recursive version of rmdir(); use with extreme caution.
File
- ./
boost.module, line 5678 - Provides static file caching for Drupal text output. Pages, Feeds, ect...
Code
function _boost_microtime_float() {
list($usec, $sec) = explode(" ", microtime());
return (double) $usec + (double) $sec;
}