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