You are here

static function krumo::ini in Devel 6

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

* Prints a list of all the values from an INI file. * *

Parameters

string $ini_file: * * @access public * @static

File

krumo/class.krumo.php, line 510

Class

krumo
Krumo API

Code

static function ini($ini_file) {

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

  // read it
  //
  if (!($_ = @parse_ini_file($ini_file, 1))) {
    return false;
  }

  // render it
  //
  ?>
<div class="krumo-title">
This is a list of all the values from the <code><b><?php

  echo realpath($ini_file) ? realpath($ini_file) : $ini_file;
  ?></b></code> INI file.
</div>
		<?php

  return krumo::dump($_);
}