Skip to content

Instantly share code, notes, and snippets.

@juizmill
Forked from wilkerlucio/infinite_loop.php
Created September 23, 2015 14:38
Show Gist options
  • Save juizmill/c12c2bacb73b83b71bf2 to your computer and use it in GitHub Desktop.
Save juizmill/c12c2bacb73b83b71bf2 to your computer and use it in GitHub Desktop.
<?php
// Script para demonstrar o loop infinito em PHP sem travar
while (true) {
puts "Ola, eu estou em loop!<br />"; // troque essa linha pelo seu loop real
flush();
sleep(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment