芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/store/system/storage/modification/system/library/config.php
data[$key]) ? $this->data[$key] : null); } /** * * * @param string $key * @param string $value */ public function set($key, $value) { $this->data[$key] = $value; } /** * * * @param string $key * * @return mixed */ public function has($key) { return isset($this->data[$key]); } /** * * * @param string $filename */ public function load($filename) { $file = DIR_CONFIG . $filename . '.php'; if (file_exists($file)) { $_ = array(); require(modification($file)); $this->data = array_merge($this->data, $_); } else { trigger_error('Error: Could not load config ' . $filename . '!'); exit(); } } }