码迷,mamicode.com
首页 > Web开发 > 详细

php 获取文件加的名称

时间:2015-05-11 23:39:22      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

    /***
     * 根本平台类型获取文件名
     */
    function showGetFileName($type,$url){
        #判断平台类型
       if($type==‘android‘||$type==‘ios‘){
              #拼接类型
              $url=$url.‘/‘.$type.‘/assets‘;
              #读取该文件  得到所有文件的对象
              $handle=opendir($url.".");
              #定义数组接受文件名
              $array_file = array();
              #循环读取
              while (false !== ($file = readdir($handle)))
              {
                    if ($file != "." && $file != "..") {
                        $array_file[] = $file; //输出文件名
                     }
              }
              #关闭
              closedir($handle);
              #返回数组
              return  $array_file;
       }
    }

 

php 获取文件加的名称

标签:

原文地址:http://www.cnblogs.com/hgj123/p/4495696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!