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


PHP UrlHelper::getUrlWithProtocol方法代碼示例

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


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

示例1: populateFromAsset

 public static function populateFromAsset(AssetFileModel $asset)
 {
     if ($asset->kind === 'json' && strpos($asset->filename, EmbeddedAssetsPlugin::getFileNamePrefix(), 0) === 0) {
         try {
             $url = $asset->getUrl();
             if (!UrlHelper::isAbsoluteUrl($url)) {
                 $protocol = craft()->request->isSecureConnection() ? 'https' : 'http';
                 $url = UrlHelper::getUrlWithProtocol($url, $protocol);
             }
             // See http://stackoverflow.com/questions/272361/how-can-i-handle-the-warning-of-file-get-contents-function-in-php
             $rawData = @file_get_contents($url);
             if ($rawData) {
                 $data = JsonHelper::decode($rawData);
                 if ($data['__embeddedasset__']) {
                     unset($data['__embeddedasset__']);
                     $embed = new EmbeddedAssetsModel();
                     $embed->id = $asset->id;
                     foreach ($data as $key => $value) {
                         $embed->{$key} = $value;
                     }
                     return $embed;
                 }
             }
         } catch (\Exception $e) {
             return null;
         }
     }
     return null;
 }
開發者ID:jonleesmith,項目名稱:jonleesmith,代碼行數:29,代碼來源:EmbeddedAssetsModel.php

示例2: getSiteUrl

 /**
  * Returns the site URL (with a trailing slash).
  *
  * @param string|null $protocol The protocol to use (http or https). If none is specified, it will default to
  *                              whatever's in the Site URL setting.
  *
  * @return string
  */
 public function getSiteUrl($protocol = null)
 {
     if (!isset($this->_siteUrl)) {
         // Start by checking the config
         $siteUrl = craft()->config->getLocalized('siteUrl');
         if (!$siteUrl) {
             if (defined('CRAFT_SITE_URL')) {
                 $siteUrl = CRAFT_SITE_URL;
             } else {
                 $siteUrl = $this->getInfo('siteUrl');
             }
             if ($siteUrl) {
                 // Parse it for environment variables
                 $siteUrl = craft()->config->parseEnvironmentString($siteUrl);
             } else {
                 // Figure it out for ourselves, then
                 $siteUrl = craft()->request->getBaseUrl(true);
             }
         }
         $this->setSiteUrl($siteUrl);
     }
     return UrlHelper::getUrlWithProtocol($this->_siteUrl, $protocol);
 }
開發者ID:codeforamerica,項目名稱:oakland-beta,代碼行數:31,代碼來源:AppBehavior.php

示例3: readAssetFile

 public function readAssetFile(AssetFileModel $asset)
 {
     $url = $asset->getUrl();
     if (!UrlHelper::isAbsoluteUrl($url)) {
         $protocol = craft()->request->isSecureConnection() ? 'https' : 'http';
         $url = UrlHelper::getUrlWithProtocol($url, $protocol);
     }
     return $this->_readExternalFile($url);
 }
開發者ID:benjamminf,項目名稱:craft-embedded-assets,代碼行數:9,代碼來源:EmbeddedAssetsService.php


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