summaryrefslogtreecommitdiffhomepage
path: root/test/php/conditional
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-05-22 20:20:14 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-05-22 20:20:14 +0300
commit3b7238996ad68f3c56a031e72e0b2f9aa0c8662c (patch)
treeb491b30834997e406d6139aaf39d7bc6140d7f30 /test/php/conditional
parent7d224bfc9e39cb7885885bb554ca21ab26f5ddd0 (diff)
downloadunit-3b7238996ad68f3c56a031e72e0b2f9aa0c8662c.tar.gz
unit-3b7238996ad68f3c56a031e72e0b2f9aa0c8662c.tar.bz2
Tests: initial PHP application tests.
Diffstat (limited to 'test/php/conditional')
-rw-r--r--test/php/conditional/index.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/php/conditional/index.php b/test/php/conditional/index.php
new file mode 100644
index 00000000..421e1a2d
--- /dev/null
+++ b/test/php/conditional/index.php
@@ -0,0 +1,5 @@
+<?php if ($_SERVER['REQUEST_METHOD'] === 'GET'): ?>
+True
+<?php else: ?>
+False
+<?php endif; ?>