Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

infinite loop php

//this infinte loop never stops until the if condition became true 
while(1){
			if(/*condition to exit from while*/);break;}
			ob_flush();	
			flush();
			sleep(2);
        	}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #infinite #loop #php
ADD COMMENT
Topic
Name
4+8 =