Advertisement
krot

md5 test

Nov 5th, 2019
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.12 KB | None | 0 0
  1.  $t=0;
  2. for($i=0;$i<9999999;++$i){
  3. $start = microtime(true);
  4. md5($i);
  5.  $t+=(microtime(true) - $start);
  6. }
  7. echo $t;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement