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


PHP config::config_exists方法代碼示例

本文整理匯總了PHP中config::config_exists方法的典型用法代碼示例。如果您正苦於以下問題:PHP config::config_exists方法的具體用法?PHP config::config_exists怎麽用?PHP config::config_exists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在config的用法示例。


在下文中一共展示了config::config_exists方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: save_config

 static function save_config($conf)
 {
     if (!config::config_exists()) {
         config::create_config();
     }
     $content = file_get_contents(CONFIG_FILE);
     $new = substr($content, 0, strpos($content, '//--AUTOCONFIG-START') + 20) . "\n\n";
     ksort($conf);
     $new .= '$_conf = ' . var_export($conf, true) . ";\n";
     if (strlen($conf['error_reporting']) != 0) {
         $new .= '$_conf["error_reporting"] = ' . $conf['error_reporting'] . ";\n\n";
     }
     $new .= substr($content, strpos($content, '//--AUTOCONFIG-END'));
     if (file_put_contents(CONFIG_FILE_WRITE, $new) === FALSE) {
         common::error("Failed writing to config.php, make sure it is writale. See Test Server section for more info");
     }
 }
開發者ID:laiello,項目名稱:phpbf,代碼行數:17,代碼來源:class.config.php

示例3: dbconnections

 static function dbconnections()
 {
     if (!config::config_exists()) {
         return array();
     }
     return config::get('db');
 }
開發者ID:laiello,項目名稱:phpbf,代碼行數:7,代碼來源:class.test.php

示例4: reset

<?php

if (LOGGED !== true) {
    die;
}
if (!config::config_exists()) {
    print '
		<h2>PhpBF Framework configuration</h2>
		Config file does not exists or is not valid. Do you want to create a new config file with default values?
		<br/><br/>
		<input type="button" value="Create" onclick="document.location.href=\'' . common::url('self') . '?edit=config\';"/>
		';
} else {
    config::load_confdata();
    print '<h2>PhpBF Framework configuration</h2>';
    $first = reset(array_keys(config::$sections));
    print '<style>
		#menu {
			background: #333;
			list-style: none;
			margin: 0;
			padding: 0;
			width: 100%;
		}
		#menu li {
			margin: 0;
			padding: 0;
		}
		#menu a {
			background: #333;
			border-bottom: 1px solid #393939;
開發者ID:laiello,項目名稱:phpbf,代碼行數:31,代碼來源:view.config.php


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