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


PHP readFileList函數代碼示例

本文整理匯總了PHP中readFileList函數的典型用法代碼示例。如果您正苦於以下問題:PHP readFileList函數的具體用法?PHP readFileList怎麽用?PHP readFileList使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: readFileList

/**
 * 獲取文件列表(所有子目錄文件)
 *
 * @param string $path 目錄
 * @param array $file_list 存放所有子文件的數組
 * @param array $ignore_dir 需要忽略的目錄或文件
 * @return array 數據格式的返回結果
 */
function readFileList($path, &$file_list, $ignore_dir = array())
{
    $path = rtrim($path, '/');
    if (is_dir($path)) {
        $handle = @opendir($path);
        if ($handle) {
            while (false !== ($dir = readdir($handle))) {
                if ($dir != '.' && $dir != '..') {
                    if (!in_array($dir, $ignore_dir)) {
                        if (is_file($path . DS . $dir)) {
                            $file_list[] = $path . DS . $dir;
                        } elseif (is_dir($path . DS . $dir)) {
                            readFileList($path . DS . $dir, $file_list, $ignore_dir);
                        }
                    }
                }
            }
            @closedir($handle);
            //			return $file_list;
        } else {
            return false;
        }
    } else {
        return false;
    }
}
開發者ID:flying3615,項目名稱:chuniang,代碼行數:34,代碼來源:core.php

示例2: ajaxOp

 /**
  * ajax操作
  */
 public function ajaxOp()
 {
     switch ($_GET['branch']) {
         /**
          * 數據庫 sql列表
          */
         case 'db_file':
             if ($_GET['dir_name'] != '.' && $_GET['dir_name'] != '..' && is_dir(BASE_ROOT_PATH . DS . 'sql_back' . DS . $_GET['dir_name'])) {
                 $dir = BASE_ROOT_PATH . DS . 'sql_back' . DS . $_GET['dir_name'];
                 $tmp = array();
                 readFileList($dir, $tmp);
                 /**
                  * 整理內容
                  */
                 if (is_array($tmp)) {
                     $file_list = array();
                     foreach ($tmp as $k => $v) {
                         $file_list[$k]['name'] = $v;
                         $file_list[$k]['make_time'] = date('Y-m-d H:i:s', filemtime($dir . DS . $v));
                         $file_list[$k]['size'] = number_format(filesize($dir . DS . $v) / 1024, 2) . 'KB';
                     }
                     $output = json_encode($file_list);
                     print_r($output);
                 }
                 exit;
             } else {
                 echo 'false';
                 exit;
             }
             break;
     }
 }
開發者ID:flying3615,項目名稱:chuniang,代碼行數:35,代碼來源:db.php

示例3: store_watermarkOp

 /**
  * 水印管理
  */
 public function store_watermarkOp()
 {
     /**
      * 讀取語言包
      */
     Language::read('member_store_index');
     $model_store_wm = Model('store_watermark');
     /**
      * 獲取會員水印設置
      */
     $store_wm_info = $model_store_wm->getOneStoreWMByStoreId($_SESSION['store_id']);
     /**
      * 保存水印配置信息
      */
     if (chksubmit()) {
         $param = array();
         $param['wm_image_pos'] = $_POST['image_pos'];
         $param['wm_image_transition'] = $_POST['image_transition'];
         $param['wm_text'] = $_POST['wm_text'];
         $param['wm_text_size'] = $_POST['wm_text_size'];
         $param['wm_text_angle'] = $_POST['wm_text_angle'];
         $param['wm_text_font'] = $_POST['wm_text_font'];
         $param['wm_text_pos'] = $_POST['wm_text_pos'];
         $param['wm_text_color'] = $_POST['wm_text_color'];
         $param['jpeg_quality'] = $_POST['image_quality'];
         if (!empty($_FILES['image']['name'])) {
             $upload = new UploadFile();
             $upload->set('default_dir', ATTACH_WATERMARK);
             $result = $upload->upfile('image');
             if ($result) {
                 $param['wm_image_name'] = $upload->file_name;
                 /**
                  * 刪除舊水印
                  */
                 if (!empty($store_wm_info['wm_image_name'])) {
                     @unlink(BASE_UPLOAD_PATH . DS . ATTACH_WATERMARK . DS . $store_wm_info['wm_image_name']);
                 }
             } else {
                 showDialog($upload->error);
             }
         } elseif ($_POST['is_del_image'] == 'ok') {
             /**
              * 刪除水印
              */
             if (!empty($store_wm_info['wm_image_name'])) {
                 $param['wm_image_name'] = '';
                 @unlink(BASE_UPLOAD_PATH . DS . ATTACH_WATERMARK . DS . $store_wm_info['wm_image_name']);
             }
         }
         $param['wm_id'] = $store_wm_info['wm_id'];
         $result = $model_store_wm->updateStoreWM($param);
         if ($result) {
             showDialog(Language::get('store_watermark_congfig_success'), 'reload', 'succ');
         } else {
             showDialog(Language::get('store_watermark_congfig_fail'));
         }
     }
     /**
      * 獲取水印字體
      */
     $dir_list = array();
     readFileList(BASE_RESOURCE_PATH . DS . 'font', $dir_list);
     if (!empty($dir_list) && is_array($dir_list)) {
         $fontInfo = array();
         include BASE_RESOURCE_PATH . DS . 'font' . DS . 'font.info.php';
         foreach ($dir_list as $value) {
             $d_array = explode('.', $value);
             if (strtolower(end($d_array)) == 'ttf' && file_exists($value)) {
                 $dir_array = explode('/', $value);
                 $value = array_pop($dir_array);
                 $tmp = explode('.', $value);
                 $file_list[$tmp[0]] = $fontInfo[$tmp[0]];
             }
         }
         /**
          * 轉碼
          */
         if (strtoupper(CHARSET) == 'GBK') {
             $file_list = Language::getGBK($file_list);
         }
         Tpl::output('file_list', $file_list);
     }
     if (empty($store_wm_info)) {
         /**
          * 新建店鋪水印設置信息
          */
         $model_store_wm->addStoreWM(array('wm_text_font' => 'default', 'store_id' => $_SESSION['store_id']));
         $store_wm_info = $model_store_wm->getOneStoreWMByStoreId($_SESSION['store_id']);
     }
     self::profile_menu('album', 'watermark');
     Tpl::output('store_wm_info', $store_wm_info);
     Tpl::showpage('store_watermark.form');
 }
開發者ID:xuxuecheng,項目名稱:shopnc,代碼行數:96,代碼來源:store_album.php

示例4: fontOp

 /**
  * 水印字體
  *
  * @param
  * @return
  */
 public function fontOp()
 {
     //獲取水印字體
     $dir_list = array();
     readFileList(BASE_RESOURCE_PATH . DS . 'font', $dir_list);
     if (!empty($dir_list) && is_array($dir_list)) {
         $fontInfo = array();
         include BASE_RESOURCE_PATH . DS . 'font' . DS . 'font.info.php';
         foreach ($dir_list as $value) {
             $file_ext_array = explode('.', $value);
             if (strtolower(end($file_ext_array)) == 'ttf' && file_exists($value)) {
                 $file_path_array = explode('/', $value);
                 $value = array_pop($file_path_array);
                 $tmp = explode('.', $value);
                 $file_list[$value] = $fontInfo[$tmp[0]];
             }
         }
         //轉碼
         if (strtoupper(CHARSET) == 'GBK') {
             $file_list = Language::getGBK($file_list);
         }
         Tpl::output('file_list', $file_list);
     }
     Tpl::output('top_link', $this->sublink($this->links, 'font'));
     Tpl::showpage('upload.font');
 }
開發者ID:noikiy,項目名稱:shopnc-minion,代碼行數:32,代碼來源:upload.php

示例5: import

 /**
  * 數據庫備份導入
  *
  * @param string $path 目錄
  * @param int $step 步驟,也是第幾個文件
  * @return array $rs_row 返回數組形式的查詢結果
  */
 public function import($path, $step = 1)
 {
     $dir = BASE_ROOT_PATH . DS . 'sql_back' . DS . $path;
     $file_list = array();
     readFileList($dir, $file_list);
     /**
      * 過濾文件
      */
     if (!empty($file_list) && is_array($file_list)) {
         foreach ($file_list as $key => $file_name) {
             if (strtolower(substr($file_name, -4)) == '.sql') {
                 $tmp_list[] = $file_name;
             }
         }
         $file_list = $tmp_list;
     }
     foreach ($file_list as $k => $v) {
         $varr = explode('_', $v);
         $file_list[$k] = $varr['0'] . '_' . $varr['1'] . '_' . $varr['2'] . '_' . $varr['3'] . '_' . ($k + 1) . '_' . $varr['5'];
     }
     $file_name = $file_list[$step - 1];
     //此處使用is_file來判斷該sql文件是否存在,不使用file_exists
     if (is_file($file_name)) {
         $handle = @fopen($file_name, "r");
         $tmp_sql = '';
         if ($handle) {
             while (!feof($handle)) {
                 $buffer = fgets($handle);
                 if (trim($buffer) != '') {
                     $tmp_sql .= $buffer;
                     if (substr(rtrim($buffer), -1) == ';') {
                         if (preg_match('/^(CREATE|ALTER|DROP)\\s+(VIEW|TABLE|DATABASE|SCHEMA)\\s+/i', ltrim($tmp_sql))) {
                             //標準的SQL語句,將被執行
                         } else {
                             if (preg_match('/^(INSERT)\\s+(INTO)\\s+/i', ltrim($tmp_sql)) && substr(rtrim($buffer), -2) == ');') {
                                 //標準的SQL語句,將被執行
                             } else {
                                 if (preg_match('/^(SET)\\s+SQL_MODE=/i', ltrim($tmp_sql))) {
                                     //SET SQL_MODE 設置,將被執行
                                 } else {
                                     //不能組成標準的SQL語句,繼續向下一行取內容,直到組成合法的SQL為止
                                     continue;
                                 }
                             }
                         }
                         if (!empty($tmp_sql)) {
                             /**
                              * 銷毀當前用戶Session信息
                              */
                             if (strpos($tmp_sql, cookie('sess_id')) !== false) {
                                 unset($tmp_sql);
                                 continue;
                             }
                             Db::query($tmp_sql, 'slave');
                             unset($tmp_sql);
                         }
                     }
                 }
             }
             @fclose($handle);
         }
         /**
          * 判斷是否還有下個文件
          */
         if (empty($file_list[$step])) {
             return 'succ';
         } else {
             return 'continue';
         }
     } else {
         return false;
     }
 }
開發者ID:Maplecms,項目名稱:shopnc-api,代碼行數:80,代碼來源:db.model.php

示例6: font_settingOp

 /**
  * 水印字體
  *
  * @param
  * @return
  */
 public function font_settingOp()
 {
     /**
      * 獲取水印字體
      */
     $dir_list = array();
     readFileList(BasePath . DS . 'resource' . DS . 'font', $dir_list);
     if (!empty($dir_list) && is_array($dir_list)) {
         $fontInfo = array();
         include BasePath . DS . 'resource' . DS . 'font' . DS . 'font.info.php';
         foreach ($dir_list as $value) {
             $file_ext_array = explode('.', $value);
             if (strtolower(end($file_ext_array)) == 'ttf' && file_exists($value)) {
                 $file_path_array = explode('/', $value);
                 $value = array_pop($file_path_array);
                 $tmp = explode('.', $value);
                 $file_list[$value] = $fontInfo[$tmp[0]];
             }
         }
         /**
          * 轉碼
          */
         if (strtoupper(CHARSET) == 'GBK') {
             $file_list = Language::getGBK($file_list);
         }
         Tpl::output('file_list', $file_list);
     }
     Tpl::showpage('setting.font_setting');
 }
開發者ID:noikiy,項目名稱:ecmall,代碼行數:35,代碼來源:setting.php

示例7: bloginfo

?>
/js/syntaxhighlighter/shCore.js"></script>
<script src="<?php 
bloginfo('template_directory');
?>
/js/syntaxhighlighter/shAutoloader.js"></script>

<link rel="stylesheet" href="<?php 
bloginfo('template_directory');
?>
/css/fancybox/jquery.fancybox.css">
<script src="<?php 
bloginfo('template_directory');
?>
/js/jquery.fancybox.pack.js"></script>

<script>
// 畫像ファイルリスト
var imglst= new Array(
<?php 
echo readFileList("/i/photo/");
?>
);
var template_directory = "<?php 
bloginfo('template_directory');
?>
";
</script>

<?php 
get_footer();
開發者ID:zionboogie,項目名稱:rfs.jp,代碼行數:31,代碼來源:single.php


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