当前位置: 首页>>代码示例>>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;未经允许,请勿转载。