function krumo::server
Prints a list of all the values from the <i>$_SERVER</i> array.
@access public @static
File
-
krumo/
class.krumo.php, line 416
Class
- krumo
- Krumo API
Code
public static function server() {
// disabled ?
//
if (!krumo::_debug()) {
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_SERVER</b></code> array.
</div>
<?php
return krumo::dump($_SERVER);
}