rintaun

Untitled

Oct 24th, 2011
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. test.equals.php:
  2. <?php
  3. $count = 100000000;
  4. for ($x = 0; $x < $count; $x++) false == false;
  5.  
  6.  
  7. test.identical.php:
  8. <?php
  9. $count = 100000000;
  10. for ($x = 0; $x < $count; $x++) false === false;
  11.  
  12.  
  13.  
  14. [rintaun@valhalla ~]$ time php test.identical.php
  15.  
  16. real 0m11.208s
  17. user 0m11.205s
  18. sys 0m0.000s
  19. [rintaun@valhalla ~]$ time php test.equals.php
  20.  
  21. real 0m10.724s
  22. user 0m10.712s
  23. sys 0m0.008s
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment