summaryrefslogtreecommitdiff
path: root/ext/filter/tests/002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/filter/tests/002.phpt')
-rw-r--r--ext/filter/tests/002.phpt11
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/filter/tests/002.phpt b/ext/filter/tests/002.phpt
new file mode 100644
index 0000000..7136b25
--- /dev/null
+++ b/ext/filter/tests/002.phpt
@@ -0,0 +1,11 @@
+--TEST--
+GET test with 2 values and an empty one
+--GET--
+a=1&b=&c=3
+--FILE--
+<?php echo $_GET['a'];
+echo $_GET['b'];
+echo $_GET['c'];
+?>
+--EXPECT--
+13