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


PHP CI::file方法代碼示例

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


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

示例1: parseMicrwoberTags


//.........這裏部分代碼省略.........
             //
             foreach ($matches as $m) {
                 $hash = md5($m['full_tag']);
                 $hash = 'replace_back_' . $hash;
                 $txt_to_replace_back[$hash] = $m['full_tag'];
                 $layout = str_replace($m['full_tag'], $hash, $layout);
             }
         }
     }
     if (strstr($layout, '<block') == true) {
         $editmode = CI::model('core')->is_editmode();
         //p($editmode);
         $relations = array();
         $tags = CI::model('core')->extractTags($layout, 'block', $selfclosing = true, $return_the_entire_tag = true, $charset = 'UTF-8');
         //	p($tags);
         $matches = $tags;
         if (!empty($matches)) {
             //
             foreach ($matches as $m) {
                 //
                 if ($m['tag_name'] == 'block') {
                     $attr = $m['attributes'];
                     if ($attr['id'] != '') {
                         //	p($m);
                         $attr['id'] = trim($attr['id']);
                         $is_global = $attr['global'];
                         if ($is_global == false) {
                             $is_global2 = $attr['rel'];
                             if (trim($is_global2) == 'global') {
                                 $is_global = true;
                             }
                         }
                         if (PAGE_ID != false and $is_global == false) {
                             $try_file = TEMPLATE_DIR . 'blocks/' . PAGE_ID;
                             $try_file = normalize_path($try_file);
                             $try_file .= $attr['id'] . '.php';
                             //p($try_file);
                             if (is_file($try_file)) {
                             } else {
                                 $try_file = TEMPLATE_DIR . 'blocks/' . $attr['id'] . '.php';
                             }
                         } else {
                             $try_file = TEMPLATE_DIR . 'blocks/' . $attr['id'] . '.php';
                         }
                         $try_file_default = TEMPLATE_DIR . 'blocks/default.php';
                         if (is_file($try_file) == false) {
                             $is_admin = is_admin();
                             if ($is_admin == true) {
                                 $dir = dirname($try_file);
                                 if (is_dir($dir) == false) {
                                     @mkdir_recursive($dir);
                                 }
                                 if (!copy($try_file_default, $try_file)) {
                                     @touch($try_file);
                                     //echo "failed to copy $file...\n";
                                 }
                             }
                         }
                         if (is_file($try_file) == true) {
                             $arrts = array();
                             foreach ($attr as $att => $at) {
                                 $this->template[$att] = $at;
                                 $arrts[$att] = $at;
                             }
                             $this->template['params'] = $arrts;
                             $this->load->vars($this->template);
開發者ID:Gninety,項目名稱:Microweber,代碼行數:67,代碼來源:template_model.php


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