, Arpad Ray * @link http://php.net/function.setrawcookie * @author Stephan Schmidt * @version $Revision: 1.2 $ * @since PHP 5.2.0 (Added optional httponly parameter) * @require PHP 3 (setcookie) */ function php_compat_setrawcookie($name, $value, $expire, $path, $domain, $secure, $httponly) { // Following the idea on Matt Mecham's blog // http://blog.mattmecham.com/archives/2006/09/http_only_cookies_without_php.html $domain = ($httponly === true) ? $domain . '; HttpOnly' : $domain; // This should probably set a cookie using header() manually so we can avoid escaping setcookie($name, $value, $expire, $path, $domain, $secure); } // Define if (!function_exists('setrawcookie')) { function setrawcookie($name, $value, $expire, $path, $domain, $secure, $httponly) { return php_compat_setrawcookie($name, $value, $expire, $path, $domain, $secure, $httponly) } }