Advertisement
evilbloodydemon

Untitled

Oct 9th, 2012
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2. function nop() {}
  3. $nop = function() {};
  4.  
  5. $start = microtime(true);
  6.  
  7. for($i=0; $i<1000000; $i++)
  8. nop();
  9.  
  10. echo (microtime(true) - $start) . "\n";
  11.  
  12. $start = microtime(true);
  13.  
  14. for($i=0; $i<1000000; $i++)
  15. $nop();
  16.  
  17. echo (microtime(true) - $start) . "\n";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement