Skip to content

Instantly share code, notes, and snippets.

@victorknust
Forked from wilkerlucio/infinite_loop.php
Created June 10, 2014 20:26
Show Gist options
  • Save victorknust/f73fedfb535c76f4f090 to your computer and use it in GitHub Desktop.
Save victorknust/f73fedfb535c76f4f090 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