当前位置: 首页>>代码示例>>PHP>>正文


PHP vmc::get_resource_host_url方法代码示例

本文整理汇总了PHP中vmc::get_resource_host_url方法的典型用法代码示例。如果您正苦于以下问题:PHP vmc::get_resource_host_url方法的具体用法?PHP vmc::get_resource_host_url怎么用?PHP vmc::get_resource_host_url使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vmc的用法示例。


在下文中一共展示了vmc::get_resource_host_url方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _process

 private static function _process(&$img, $imglib)
 {
     foreach ($img as $image_id => $sizes) {
         if (!isset($imglib[$image_id]['storage']) || empty($imglib[$image_id]['storage'])) {
             continue;
             //未知引擎,无法处理
         }
         if (file_exists(APP_DIR . '/base/lib/storage/' . $imglib[$image_id]['storage'] . '.php') || file_exists(EXTENDS_DIR . '/base/lib/storage/' . $imglib[$image_id]['storage'] . '.php')) {
             $storager_class = 'base_storage_' . $imglib[$image_id]['storage'];
         } else {
             $storager_class = false;
         }
         foreach ($sizes as $i => $item) {
             if ($item[0] && $storager_class) {
                 /**
                  * modifier_process is a static Method
                  */
                 if (method_exists($storager_class, 'modifier_process')) {
                     $url = $storager_class::modifier_process($imglib[$image_id]['url'], $item[0]);
                     $the_url_plus = implode('_', array(substr($imglib[$image_id]['last_modified'], -5), 'OW' . $imglib[$image_id]['width'], 'OH' . $imglib[$image_id]['height']));
                     $the_url = $url && $url != '' ? $url . '?' . $the_url_plus : '';
                     $img[$image_id][$i][0] = $the_url;
                     continue;
                 }
             }
             switch ($item[0]) {
                 case 'xs':
                     $url = $imglib[$image_id]['xs_url'] ? $imglib[$image_id]['xs_url'] : $imglib[$image_id]['url'];
                     break;
                 case 's':
                     $url = $imglib[$image_id]['s_url'] ? $imglib[$image_id]['s_url'] : $imglib[$image_id]['url'];
                     break;
                 case 'm':
                     $url = $imglib[$image_id]['m_url'] ? $imglib[$image_id]['m_url'] : $imglib[$image_id]['url'];
                     break;
                 case 'l':
                     $url = $imglib[$image_id]['l_url'] ? $imglib[$image_id]['l_url'] : $imglib[$image_id]['url'];
                     break;
                 default:
                     $url = $imglib[$image_id]['url'];
                     break;
             }
             if ($url && !strpos($url, '://') && substr($url, 0, 2) != '//') {
                 $resource_host_url = vmc::get_resource_host_url();
                 $url = $resource_host_url . '/' . $url;
             }
             $the_url_plus = substr($imglib[$image_id]['last_modified'], -5) . '_H' . $imglib[$image_id]['height'] . '_W' . $imglib[$image_id]['width'];
             $the_url = $url && $url != '' ? $url . '?' . $the_url_plus : '';
             $img[$image_id][$i][0] = $the_url;
         }
     }
 }
开发者ID:yindonghai,项目名称:msk.com,代码行数:52,代码来源:storager.php


注:本文中的vmc::get_resource_host_url方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。