diff options
Diffstat (limited to 'tests/plugins/service/php/loop.php')
-rw-r--r-- | tests/plugins/service/php/loop.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/plugins/service/php/loop.php b/tests/plugins/service/php/loop.php new file mode 100644 index 00000000..6ba488ef --- /dev/null +++ b/tests/plugins/service/php/loop.php @@ -0,0 +1,6 @@ +<?php +for ($x = 0; $x <= 1000; $x++) { + sleep(1); + error_log("The number is: $x", 0); +} +?> |