You appear to be a bot. Output may be restricted
Description
Return the cookie list parameter for the request Note: we pass the full cookie name to the server since we expect it to be able to perform a better job in cookie_cat_simplify()
Usage
cookie_cat_cookie_list();
Parameters
Returns
voidSource
File name: cookie-cat/admin/cookie-cat.phpLines:
1 to 10 of 10
function cookie_cat_cookie_list() { bw_trace2( $_COOKIE ); $cookies = "&cookies="; if ( count( $_COOKIE ) ) { foreach ( $_COOKIE as $cookie => $val ) { $cookies .= $cookie . "," ; } } return( $cookies ); }View on GitHub View on Trac