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


PHP utils::tree方法代碼示例

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


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

示例1: install

 public function install()
 {
     $dir = $this->getPathname();
     $dir = str_replace('\\', '/', $dir);
     $app_lang_dir = str_replace('\\', '/', $this->target_app->lang_dir);
     $lang_name = basename($dir);
     foreach (utils::tree($dir) as $k => $v) {
         if (!is_file($v)) {
             continue;
         }
         $tree[$lang_name][] = str_replace($app_lang_dir . '/' . $lang_name . '/', '', $v);
     }
     logger::info($this->target_app->app_id . ' "' . $lang_name . '" language resource stored');
     lang::set_res($this->target_app->app_id, $tree);
 }
開發者ID:453111208,項目名稱:bbc,代碼行數:15,代碼來源:lang.php

示例2: last_modified

 public function last_modified($app_id)
 {
     $info_arr = array();
     foreach ($this->detect($app_id) as $item) {
         $dir = $this->getPathname();
         if (is_dir($dir) && realpath($dir) == realpath($this->target_app->res_dir . '/bundle')) {
             foreach (utils::tree($dir) as $k => $v) {
                 if (!is_file($v)) {
                     continue;
                 }
                 $info_arr[$v] = md5_file($v);
             }
             ksort($info_arr);
             continue;
         }
     }
     return md5(serialize($info_arr));
 }
開發者ID:sss201413,項目名稱:ecstore,代碼行數:18,代碼來源:imgbundle.php

示例3: last_modified

 function last_modified($app_id)
 {
     $info_arr = array();
     foreach ($this->detect($app_id) as $item) {
         //$modified = max($modified,filemtime($this->getPathname()));
         //todo: md5
         $filename = $this->getPathname();
         if (is_dir($filename)) {
             foreach (utils::tree($filename) as $k => $v) {
                 if (is_dir($v)) {
                     continue;
                 }
                 $info_arr[$v] = md5_file($v);
             }
         } else {
             $info_arr[$filename] = md5_file($filename);
         }
     }
     ksort($info_arr);
     return md5(serialize($info_arr));
 }
開發者ID:sss201413,項目名稱:ecstore,代碼行數:21,代碼來源:filepath.php

示例4: command_update

 function command_update()
 {
     $options = $this->get_options();
     if ($options['sync'] || $options['sync-only']) {
         kernel::single('base_application_manage')->sync();
     } else {
         kernel::single('base_application_manage')->update_local();
     }
     if ($options['sync-only']) {
         return true;
     }
     $args = func_get_args();
     if (!$args) {
         $rows = app::get('base')->model('apps')->getList('app_id', array('installed' => 1));
         foreach ($rows as $r) {
             if ($r['app_id'] == 'base') {
                 continue;
             }
             $args[] = $r['app_id'];
         }
     }
     array_unshift($args, 'base');
     //todo:總是需要先更新base
     $args = array_unique($args);
     if (!$options['ignore-download']) {
         foreach ($args as $app_id) {
             //kernel::single('base_application_manage')->download($app_id,$options['force-download']);  //todo:臨時去掉
         }
     }
     if ($options['force-update-db']) {
         base_application_dbtable::$force_update = true;
     }
     if ($options['custom-force-update-db']) {
         if (defined('CUSTOM_CORE_DIR')) {
             foreach (utils::tree(CUSTOM_CORE_DIR) as $k => $v) {
                 if (is_file($v)) {
                     touch($v);
                 }
             }
         }
     }
     if (!$options['download-only']) {
         foreach ($args as $app_id) {
             $appinfo = app::get('base')->model('apps')->getList('*', array('app_id' => $app_id));
             if (version_compare($appinfo[0]['local_ver'], $appinfo[0]['dbver'], '>') || $options['force-update-app']) {
                 app::get($app_id)->runtask('pre_update', array('dbver' => $appinfo[0]['dbver']));
                 kernel::single('base_application_manage')->update_app_content($app_id);
                 app::get($app_id)->runtask('post_update', array('dbver' => $appinfo[0]['dbver']));
                 app::get('base')->model('apps')->update(array('dbver' => $appinfo[0]['local_ver']), array('app_id' => $app_id));
             } else {
                 kernel::single('base_application_manage')->update_app_content($app_id);
             }
             //新更版本等信息
             $app_info = app::get($app_id)->define();
             if (isset($app_info['node_id']) && $app_info['node_id'] == "true" && base_shopnode::node_id($app_id)) {
                 if (base_shopnode::update($app_id)) {
                     kernel::log('Applications info send to center, ok.');
                 }
             }
         }
         kernel::log('Applications database and services is up-to-date, ok.');
     }
 }
開發者ID:syjzwjj,項目名稱:quyeba,代碼行數:63,代碼來源:buildin.php


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