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.
13 lines
242 B
13 lines
242 B
10 months ago
|
<?php
|
||
|
|
||
|
use Symfony\Component\HttpFoundation\Cookie;
|
||
|
|
||
|
$r = require __DIR__.'/common.inc';
|
||
|
|
||
|
$str = '?*():@&+$/%#[]';
|
||
|
|
||
|
$r->headers->setCookie(new Cookie($str, $str, 0, '', null, false, false));
|
||
|
$r->sendHeaders();
|
||
|
|
||
|
setcookie($str, $str, 0, '/');
|