matrix-procmonitor/test-process.php

11 lines
150 B
PHP
Raw Normal View History

2024-07-09 01:22:43 +00:00
<?php
while(1){
echo("Test Process Running\n");
if(rand(0, 9) == 0){
echo("Test Process Found Something!\n");
}
sleep(5);
}