本文整理汇总了PHP中updateSitePath函数的典型用法代码示例。如果您正苦于以下问题:PHP updateSitePath函数的具体用法?PHP updateSitePath怎么用?PHP updateSitePath使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了updateSitePath函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getmicrotime
include_once txpath . '/lib/txplib_element.php';
include_once txpath . '/lib/txplib_class.php';
include_once txpath . '/lib/admin_config.php';
include_once txpath . '/lib/txplib_controller.php';
include_once txpath . '/lib/txplib_section.php';
$microstart = getmicrotime();
if ($DB->connected && $DB->table_exists(PFX . 'textpattern')) {
$dbversion = safe_field('val', 'txp_prefs', "name = 'version'");
// global site prefs
$prefs = get_prefs();
extract($prefs);
if (empty($siteurl)) {
$siteurl = $_SERVER['HTTP_HOST'] . rtrim(dirname(dirname($_SERVER['SCRIPT_NAME'])), '/');
}
if (empty($path_to_site)) {
updateSitePath(dirname(dirname(__FILE__)));
}
define("LANG", $language);
//i18n: define("LANG","en-gb");
define('txp_version', $thisversion);
if (!defined('PROTOCOL')) {
switch (serverSet('HTTPS')) {
case '':
case 'off':
// ISAPI with IIS
define('PROTOCOL', 'http://');
break;
default:
define('PROTOCOL', 'https://');
break;
}
示例2: define
* @since 4.6.0
*/
define('SITE_HOST', (string) @parse_url(hu, PHP_URL_HOST));
}
if (!defined('IMPATH')) {
/**
* Path to image directory.
*
* @package Image
*/
define('IMPATH', $path_to_site . DS . $img_dir . DS);
}
// 1.0: a new $here variable in the top-level index.php should let us know the
// server path to the live site let's save it to prefs.
if (isset($here) and $path_to_site != $here) {
updateSitePath($here);
}
if (!defined('LANG')) {
/**
* Currently active language.
*
* @package L10n
*/
define('LANG', $language);
}
if (!empty($locale)) {
setlocale(LC_ALL, $locale);
}
// Initialise the current user.
$txp_user = null;
// i18n.