本文整理匯總了PHP中config::load_config方法的典型用法代碼示例。如果您正苦於以下問題:PHP config::load_config方法的具體用法?PHP config::load_config怎麽用?PHP config::load_config使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類config
的用法示例。
在下文中一共展示了config::load_config方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: get_folder_path
public static function get_folder_path($id)
{
if (!$id) {
return '';
}
static $folders = null;
if (!config::config_exists()) {
return false;
}
if ($folders === null) {
config::load_config();
$folders = config::search('/^folder_/');
}
return isset($folders['folder_' . $id]) ? $folders['folder_' . $id] : false;
}
示例2: is_complete
static function is_complete()
{
config::load_confdata();
$current_config = config::load_config();
$default_config = array();
foreach (config::$sections as $id_sec => $sec) {
foreach (config::$subsections[$id_sec] as $id_sub => $sub) {
foreach (config::$fields[$id_sec][$id_sub] as $id => $field) {
if ($field["onsave"]) {
$field["onsave"]($id, $field["default"], $default_config);
} else {
$default_config[$id] = $field["default"];
}
}
}
}
foreach ($default_config as $id => $value) {
if (!isset($current_config[$id])) {
return false;
}
}
return true;
}
示例3: dirname
/**
* -----------------------------------------------------------------------------
* @package smartVISU
* @author Joerg Herrmann
* @copyright 2014
* @license GPL [http://www.gnu.de]
* -----------------------------------------------------------------------------
*/
//error_reporting( E_ALL | E_STRICT );
error_reporting(E_ALL & ~E_NOTICE);
ini_set("display_errors", 1);
preg_match('/(.*)?\\/pages\\/.*?/', dirname(__FILE__), $system_path);
define('const_path_system', $system_path[1] . '/lib/');
define('const_path', $system_path[1] . '/');
$request = array_merge($_GET, $_POST);
//touch(const_path.'config.ini');
require_once const_path_system . 'functions_config.php';
$cfg = new config(const_path . 'config.ini');
$cfg->load_config();
$cfg->write_config($request);
// management interface,
if ($request['managed'] !== '') {
die;
} else {
//$cfg -> write_config($request);
//header("HTTP/1.0 600 smartVISU Config Error");
//$ret[] = array('title' => 'Configuration',
// 'text' => 'Error saving configuration!<br />Please check the file permissions on "config.php" (it must be writeable)!');
//echo json_encode($ret);
}