You are here

static function krumo::path in Devel 6

Same name and namespace in other branches
  1. 7 krumo/class.krumo.php \krumo::path()

* Prints a list of the specified directories under your <i>include_path</i> option. * * @access public * @static

File

krumo/class.krumo.php, line 316

Class

krumo
Krumo API

Code

static function path() {

  // disabled ?
  //
  if (!krumo::_debug()) {
    return false;
  }

  // render it
  //
  ?>
<div class="krumo-title">
This is a list of the specified directories under your <code><b>include_path</b></code> option.
</div>
		<?php

  return krumo::dump(explode(PATH_SEPARATOR, ini_get('include_path')));
}