xref: /PHP-7.4/ext/filter/tests/002.phpt (revision 782352c5)
1--TEST--
2GET test with 2 values and an empty one
3--GET--
4a=1&b=&c=3
5--FILE--
6<?php echo $_GET['a'];
7echo $_GET['b'];
8echo $_GET['c'];
9?>
10--EXPECT--
1113
12