當前位置: 首頁>>代碼示例>>PHP>>正文


PHP config::load_config方法代碼示例

本文整理匯總了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;
 }
開發者ID:laiello,項目名稱:phpbf,代碼行數:15,代碼來源:class.file.php

示例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;
 }
開發者ID:laiello,項目名稱:phpbf,代碼行數:23,代碼來源:class.config.php

示例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);
}
開發者ID:bjko,項目名稱:smartvisu-cleaninstall,代碼行數:30,代碼來源:configure.php


注:本文中的config::load_config方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。