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


PHP Mobile::carrierTemplate方法代码示例

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


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

示例1: main

 function main()
 {
     //キャリアを判別
     $carrier = Mobile::carrier();
     //サーチの場合、テンプレート読込が別処理
     if ($this->classmode == "overright") {
         //コンテンツごとの処理(内容の記述は下位クラスにて)
         $contents = $this->contentsMain();
         $tempHTML = $contents[0];
         if (isset($contents[1])) {
             $this->tempData += $contents[1];
         }
     } else {
         //テンプレートファイル読み込み
         $tempHTML = $this->contentsMain();
     }
     //クリニックのリンク情報の差し替えファイル。
     global $clinicfile;
     require $clinicfile;
     $this->tempData += $clinicData;
     //全キャリア共通の差し替えファイル。
     global $allfile;
     require $allfile;
     $this->tempData += $data;
     //キャリア別差し替えファイル
     $this->tempData += Mobile::carrierTemplate($carrier);
     //日付等のメタ生成
     $this->tempData += Mobile::metaDate();
     //テンプレート差し替え
     $html = Mobile::tempReplace($tempHTML, $this->tempData);
     //HTMLを出力
     Mobile::output($html);
 }
开发者ID:aim-web-projects,项目名称:ann-cosme,代码行数:33,代码来源:Mobile.class.php


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