Created
July 7, 2011 19:21
-
-
Save wilkerlucio/1070317 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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