You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
330 B

20 years ago
20 years ago
  1. --TEST--
  2. Cookies test#2
  3. --COOKIE--
  4. c o o k i e=value; c o o k i e= v a l u e ;;c%20o+o k+i%20e=v;name="value","value",UEhQIQ==;UEhQIQ==foo
  5. --FILE--
  6. <?php
  7. var_dump($_COOKIE);
  8. ?>
  9. --EXPECT--
  10. array(3) {
  11. [u"c_o_o_k_i_e"]=>
  12. unicode(1) "v"
  13. [u"name"]=>
  14. unicode(24) ""value","value",UEhQIQ=="
  15. [u"UEhQIQ"]=>
  16. unicode(4) "=foo"
  17. }