Posted by Sam Yong on Fri 4 Sep 14:57
report abuse | download | new post
- <?php
- $time_start = microtime_float();
- $test = cool;
- $time_end = microtime_float();
- $loadedin = (float)($time_end - $time_start);
- $time_start = microtime_float();
- $test = "cool";
- $time_end = microtime_float();
- $loadedin = (float)($time_end - $time_start);
- $time_start = microtime_float();
- $test = 'cool';
- $time_end = microtime_float();
- $loadedin = (float)($time_end - $time_start);
- function microtime_float(){
- return ((float)$usec + (float)$sec);
- }
- ?>
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.