move to PHP-7.4 as current GA
[m6w6/ext-http] / tests / cookie003.phpt
1 --TEST--
2 cookies numeric keys
3 --SKIPIF--
4 <?php
5 include "skipif.inc";
6 ?>
7 --FILE--
8 <?php
9 echo "Test\n";
10
11 $c = new http\Cookie("1=%20; 2=%22; 3=%5D", 0, array(2));
12 var_dump("1=%20; 3=%5D; 2=%22; " === (string) $c);
13
14 ?>
15 DONE
16 --EXPECT--
17 Test
18 bool(true)
19 DONE