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