Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $start = microtime(true);
  2. echo "Inicio\n";
  3. $container = fopen($file,'r');
  4. $array = [];
  5. while(!feof($container)) {
  6. if ($linha = fgets($container)) {
  7. $array[] = $linha;
  8. }
  9. }
  10. echo sprintf("Duração1: %s\n", microtime(true) - $start);
  11. $start = microtime(true);
  12. foreach ($array as $linha){
  13.  
  14. }
  15. echo sprintf("Duração2: %s\n", microtime(true) - $start);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement