本文整理汇总了PHP中SiteConfig::set_config_path方法的典型用法代码示例。如果您正苦于以下问题:PHP SiteConfig::set_config_path方法的具体用法?PHP SiteConfig::set_config_path怎么用?PHP SiteConfig::set_config_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SiteConfig
的用法示例。
在下文中一共展示了SiteConfig::set_config_path方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct($path, $fallback = null)
{
SiteConfig::set_config_path($path, $fallback);
// 20131011 Pulipuli Chen
// 加入記錄
$this->path = $path;
$this->fallback = $fallback;
require dirname(__FILE__) . '/../../config.php';
$this->options = $options;
}
示例2: __construct
function __construct($path, $fallback = null)
{
SiteConfig::set_config_path($path, $fallback);
}
示例3: apc_cache_info
if (file_put_contents($savepath, $_POST['contents']) !== false) {
echo '<p>Saved to <strong>' . $savepath . '</strong></p>';
// check caching
if ($options->caching) {
echo '<p>Note: caching is enabled — you may have to disable caching or delete cache files to see changes.<p>';
}
if ($options->apc && function_exists('apc_delete') && function_exists('apc_cache_info')) {
$_apc_data = apc_cache_info('user');
foreach ($_apc_data['cache_list'] as $_apc_item) {
if (substr($_apc_item['info'], 0, 3) == 'sc.') {
apc_delete($_apc_item['info']);
}
}
echo '<p>Cleared site config cache in APC.</p>';
}
SiteConfig::set_config_path(dirname($savepath));
$sconfig = SiteConfig::build($save, $exact_host_match = true);
if ($sconfig) {
if (!empty($sconfig->test_url)) {
echo '<h4>Test URLs</h4>';
echo '<ul>';
foreach ($sconfig->test_url as $test_url) {
$ftr_test_url = $test_url;
if (strtolower(substr($ftr_test_url, 0, 7)) == 'http://') {
$ftr_test_url = substr($ftr_test_url, 7);
}
$ftr_test_url = '../makefulltextfeed.php?url=' . urlencode($ftr_test_url);
echo '<li>';
echo '<a href="' . htmlspecialchars($test_url) . '" target="_blank">' . htmlspecialchars($test_url) . '</a>';
echo ' | <a href="' . $ftr_test_url . '" target="_blank">Full-Text RSS result</a>';
echo ' | <a href="' . $ftr_test_url . '&debug" target="_blank">Debug</a>';