static function krumo::cookie in Devel 6
Same name and namespace in other branches
- 7 krumo/class.krumo.php \krumo::cookie()
* Prints a list of all the values from the <i>$_COOKIE</i> array. * * @access public * @static
File
- krumo/
class.krumo.php, line 436
Class
- krumo
- Krumo API
Code
static function cookie() {
// disabled ?
//
if (!krumo::_debug()) {
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_COOKIE</b></code> array.
</div>
<?php
return krumo::dump($_COOKIE);
}