summaryrefslogtreecommitdiff
path: root/tests/plugins/service/php/loop.php
blob: 6ba488efced742f4ff865f570893c09e751109e7 (plain)
1
2
3
4
5
6
<?php
for ($x = 0; $x <= 1000; $x++) {
  sleep(1);
  error_log("The number is: $x", 0);
}
?>