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


PHP updateSitePath函數代碼示例

本文整理匯總了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;
        }
開發者ID:bgarrels,項目名稱:textpattern,代碼行數:31,代碼來源:index.php

示例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.
開發者ID:ClaireBrione,項目名稱:textpattern,代碼行數:31,代碼來源:publish.php


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