summaryrefslogtreecommitdiff
path: root/tests/plugins/service/php/loop.php
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-04-18 17:31:52 +0300
committerValery Piashchynski <[email protected]>2021-04-18 17:31:52 +0300
commit4e6dfc00c5619c4e749602d345fd2829ab0a3f07 (patch)
tree12b4ce7644b02b6e76cfa46e8c80d54690d6e0dc /tests/plugins/service/php/loop.php
parent15b7a9a0fc074531f9b46bb87fb35819e248a58c (diff)
- Draft implementation of the service plugin
Diffstat (limited to 'tests/plugins/service/php/loop.php')
-rw-r--r--tests/plugins/service/php/loop.php6
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);
+}
+?>