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


PHP vmc::get_app_statics_host_url方法代码示例

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


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

示例1: __construct

 public function __construct($app_id)
 {
     $this->app_id = $app_id;
     $this->app_dir = APP_DIR . '/' . $app_id;
     $this->res_dir = PUBLIC_DIR;
     $this->res_url = vmc::get_app_statics_host_url();
     if (is_dir($this->res_dir . '/' . $app_id)) {
         $this->res_dir = $this->res_dir . '/' . $app_id;
         $this->res_url = vmc::get_app_statics_host_url() . '/' . $app_id;
     }
     $this->res_full_url = $this->res_url;
 }
开发者ID:yindonghai,项目名称:msk.com,代码行数:12,代码来源:app.php

示例2: _format

 /**
  * 格式化列表.
  */
 private function _format(&$item, $router_app = 'site')
 {
     foreach ($item as $key => &$value) {
         switch ($key) {
             case 'product':
                 $this->_format($value);
                 break;
             case 'list_extension':
                 foreach ($value as &$item) {
                     $this->_format($item);
                 }
                 break;
             case 'product_id':
                 $item['item_url'] = app::get($router_app)->router()->gen_url(array('full' => 'true', 'app' => 'b2c', 'ctl' => 'site_product', 'args' => array($item[$key])));
                 break;
             case 'image_default_id':
             case 'image_id':
                 $item['image'] = base_storager::image_path($value, 'm');
                 break;
             case 'cat_id':
                 $item['category'] = app::get('b2c')->model('goods_cat')->getRow('cat_id as id,cat_name', array('cat_id' => $value));
                 break;
             case 'brand_id':
                 $item['brand'] = app::get('b2c')->model('brand')->getRow('brand_id as id,brand_name,brand_initial,brand_logo,brand_country', array('brand_id' => $value));
                 if ($item['brand']) {
                     $item['brand']['brand_logo_image'] = base_storager::image_path($item['brand']['brand_logo']);
                     $item['brand']['brand_country_flag'] = vmc::get_app_statics_host_url() . '/misc/flags/' . $item['brand']['brand_country'] . '.png';
                 }
                 break;
             case 'price':
             case 'mktprice':
             case 'member_lv_price':
             case 'buy_price':
                 $item[$key] = vmc::singleton('ectools_math')->formatNumber($value, app::get('ectools')->getConf('site_decimal_digit_count'), app::get('ectools')->getConf('site_decimal_digit_count'));
                 break;
         }
     }
     $this->_hidden($item);
 }
开发者ID:yindonghai,项目名称:msk.com,代码行数:42,代码来源:stage.php


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