11 lines
150 B
PHP
11 lines
150 B
PHP
|
<?php
|
||
|
|
||
|
while(1){
|
||
|
echo("Test Process Running\n");
|
||
|
|
||
|
if(rand(0, 9) == 0){
|
||
|
echo("Test Process Found Something!\n");
|
||
|
}
|
||
|
|
||
|
sleep(5);
|
||
|
}
|