コード例 #1
0
 /**
  * Shows PHP config
  */
 protected function showPhpConfig()
 {
     $cfg = ini_get_all();
     $table = array();
     $table[] = array("Directive", "Value");
     foreach ($cfg as $configName => $configValue) {
         $table[] = array($configName, $configValue["local_value"]);
     }
     $this->openCat("PHP Config");
     $this->firePhp->table("Show", $table);
     $this->closeCat();
 }
コード例 #2
0
ファイル: firephp.php プロジェクト: hkilter/OpenSupplyChains
 public function table($Label, $Table, $Options = array())
 {
     parent::table($Label, $Table, $Options);
     return $this;
 }