本文整理汇总了PHP中path::set方法的典型用法代码示例。如果您正苦于以下问题:PHP path::set方法的具体用法?PHP path::set怎么用?PHP path::set使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类path
的用法示例。
在下文中一共展示了path::set方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: error_reporting
}
error_reporting(E_ERROR | E_PARSE);
define("WCMS_BOOTSTRAP_LOADED");
// set up some options
ini_set('arg_separator.output', '&');
ini_set('magic_quotes_runtime', 0);
ini_set('magic_quotes_sybase', 0);
ini_set('session.cache_limiter', 'none');
ini_set('session.use_only_cookies', 1);
ini_set('session.use_trans_sid', 0);
// Set Up PEAR Path
ini_set("include_path", realpath(dirname(__FILE__)) . '/classes/pear/' . PATH_SEPARATOR . ".");
$paths = array('classes' => 'classes', 'data' => 'data', 'templates' => 'templates', 'images' => 'images', 'plugins' => 'plugins');
require_once "classes/paths_class.php";
$base_paths = path::parse_paths();
path::set($base_paths['file'], $base_paths['http'], $paths);
check_dirs();
require_once path::file("classes") . "vars_class.php";
include_once path::file("data") . "settings.php";
$db_prefix = $settings['db_prefix'];
$cache_options = array('data_dir' => path::file("data") . "cache/", 'cache_tag' => md5(path::http("templates") . $settings['theme'] . "/theme.css" . filemtime(path::file("templates") . $settings['theme'] . "/theme.css")));
require_once path::file("classes") . "cache_handling_class.php";
$cache = new cache_handler($cache_options);
// implement smarty object
require_once path::file("classes") . "smarty/Smarty.class.php";
$smarty = new Smarty();
$smarty->compile_check = true;
$smarty->debugging = false;
$smarty->template_dir = path::file("templates");
$smarty->compile_dir = path::file("data") . "template_cache/";
// Assign some useful smarty vars