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


PHP Alias::get方法代碼示例

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


在下文中一共展示了Alias::get方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init

 public static function init()
 {
     $oquery = urldecode(substr($_SERVER['REQUEST_URI'], 1));
     $p = explode('?', $oquery, 2);
     $query = $p[0];
     $newurl = Alias::get($query);
     if ($newurl) {
         if (!empty($p[1])) {
             $newurl .= '?' . $p[1];
         }
         if ($newurl === $oquery) {
             return;
         }
         header('Location: /' . $newurl, true, 301);
         exit;
     }
 }
開發者ID:infrajs,項目名稱:urlalias,代碼行數:17,代碼來源:Alias.php

示例2: __construct

 /**
  * @param Alias $alias
  * @param string $baseUrl
  */
 public function __construct(Alias $alias, $baseUrl)
 {
     $this->alias = $alias;
     $this->assetsPath = $alias->get('@web') . $this->assetsDir;
     $this->assetsUrl = rtrim($baseUrl, '/') . $this->assetsDir;
 }
開發者ID:getherbie,項目名稱:herbie,代碼行數:10,代碼來源:Assets.php

示例3: db_query

if ($_REQUEST['g'] == 'gift' && !empty($_POST['productID'])) {
    $productID = $_POST['productID'];
    $name_from = $_POST['nameFrom'];
    $email_from = $_POST['emailFrom'];
    $name_to = $_POST['nameTo'];
    $email_to = $_POST['emailTo'];
    $message = $_POST['message'];
    $sql = '
        SELECT productID, name
        FROM ' . PRODUCTS_TABLE . '
        WHERE productID = ' . (int) $productID;
    $q = db_query($sql);
    $offer = array();
    while ($row = db_fetch_row($q)) {
        $alias = Alias::get(NULL, Alias::MODULE_PRODUCT, $row['productID']);
        $offer['name'] = $row['name'];
        $offer['alias'] = $alias['uri'];
    }
    if (CONF_MOD_REWRITE) {
        if ($offer['alias']) {
            $offer_url = $offer['alias'] . '/';
        } else {
            $offer_url = 'product_' . $productID . '.html';
        }
    } else {
        $offer_url = 'index.php?productID=' . $productID;
    }
    $assign = array('offer_id' => $productID, 'offer_name' => $offer['name'], 'offer_url' => 'http://' . $_SERVER['HTTP_HOST'] . '/' . $offer_url, 'name_from' => $name_from, 'name_to' => $name_to, 'email_from' => $email_from, 'message' => $message);
    $subject = $name_from . ' хочет получить от Вас подарок';
    if (dizMail($email_to, $subject, 'gift_mail', $assign)) {
開發者ID:gblok,項目名稱:rsc,代碼行數:30,代碼來源:gift.php


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