Skip to content

Instantly share code, notes, and snippets.

@wilkerlucio
Created July 7, 2011 19:21
Show Gist options
  • Save wilkerlucio/1070317 to your computer and use it in GitHub Desktop.
Save wilkerlucio/1070317 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