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


PHP CHTTP::GetLastStatus方法代碼示例

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


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

示例1: _Check404Error

function _Check404Error(){
   if(defined('ERROR_404') && ERROR_404=='Y' || CHTTP::GetLastStatus() == "404 Not Found"){
      global $APPLICATION;
      $APPLICATION->RestartBuffer();
      require ($_SERVER['DOCUMENT_ROOT'].SITE_TEMPLATE_PATH.'/header.php');
      require $_SERVER['DOCUMENT_ROOT'].'/404.php';
      require ($_SERVER['DOCUMENT_ROOT'].SITE_TEMPLATE_PATH.'/footer.php');
   }
}
開發者ID:CheBurashka334,項目名稱:crado,代碼行數:9,代碼來源:init.php

示例2: f

        if (w.opera == "[object Opera]") {
            d.addEventListener("DOMContentLoaded", f, false);
        } else { f(); }
    })(document, window, "yandex_metrika_callbacks");
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/29322070" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</body>
</html>

<?php 
if (!strlen(trim($APPLICATION->GetProperty('H1')))) {
    $APPLICATION->SetPageProperty('H1', $APPLICATION->GetTitle());
}
if ($APPLICATION->GetProperty('SHOW_H1') != 'N') {
    $APPLICATION->SetPageProperty('_h1', '<h1 class="title_page">' . $APPLICATION->GetProperty('h1') . '</h1>');
}
if (strlen(trim($APPLICATION->GetProperty('ARTICLE_CLASS'))) == 0) {
    $APPLICATION->SetPageProperty('ARTICLE_CLASS', $APPLICATION->GetProperty('ARTICLE_CLASS') . " b_dop_content");
}
$page = $APPLICATION->GetCurPage();
if (CHTTP::GetLastStatus() == "404 Not Found" && $page != "/404.php") {
    if (preg_match("/\\/(.*?)[^\\/]\$/i", $page, $arRes)) {
        LocalRedirect($arRes[0] . "/");
        die;
    }
    $APPLICATION->RestartBuffer();
    echo file_get_contents("http://" . $_SERVER["SERVER_NAME"] . "/404.php?404=N");
    die;
}
開發者ID:bquadro,項目名稱:Projects,代碼行數:30,代碼來源:footer.php

示例3: isCacheable

 /**
  * Returns true if file exists
  * with predefined path (current request uri)
  *
  * @return bool
  */
 public function isCacheable()
 {
     if ($this->cacheFile) {
         if (isset($_SESSION["SESS_SHOW_TIME_EXEC"]) && $_SESSION["SESS_SHOW_TIME_EXEC"] == 'Y') {
             return false;
         } elseif (isset($_SESSION["SHOW_SQL_STAT"]) && $_SESSION["SHOW_SQL_STAT"] == 'Y') {
             return false;
         } elseif (isset($_SESSION["SHOW_CACHE_STAT"]) && $_SESSION["SHOW_CACHE_STAT"] == 'Y') {
             return false;
         }
         $httpStatus = \CHTTP::GetLastStatus();
         if ($httpStatus == 200 || $httpStatus === "") {
             return $this->canCache;
         } else {
             return false;
         }
     } else {
         return false;
     }
 }
開發者ID:ASDAFF,項目名稱:open_bx,代碼行數:26,代碼來源:statichtmlcache.php

示例4: isCacheable

 /**
  * Returns true if we can cache current request
  *
  * @return bool
  */
 public function isCacheable()
 {
     if ($this->storage === null) {
         return false;
     }
     if ($this->cacheProvider !== null && $this->cacheProvider->isCacheable() === false) {
         return false;
     }
     if (isset($_SESSION["SESS_SHOW_TIME_EXEC"]) && $_SESSION["SESS_SHOW_TIME_EXEC"] == 'Y') {
         return false;
     } elseif (isset($_SESSION["SHOW_SQL_STAT"]) && $_SESSION["SHOW_SQL_STAT"] == 'Y') {
         return false;
     } elseif (isset($_SESSION["SHOW_CACHE_STAT"]) && $_SESSION["SHOW_CACHE_STAT"] == 'Y') {
         return false;
     }
     $httpStatus = intval(\CHTTP::GetLastStatus());
     if ($httpStatus == 200 || $httpStatus === 0) {
         return $this->canCache;
     }
     return false;
 }
開發者ID:DarneoStudio,項目名稱:bitrix,代碼行數:26,代碼來源:statichtmlcache.php


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