当前位置 : 主页 > 网络编程 > PHP >

php获取文件夹里的图片

来源:互联网 收集:自由互联 发布时间:2023-09-03
header('content-type:text/html;charset=gbk'); if(!empty($_GET['parent_id'])){ $id1 = M('goods_category')-where('id='.$_GET['id'])-find(); }elseif(!empty($_GET['id'])){ $id1 = M('goods_category')-where('parent_id='.$_GET['id'])-find(); }else

header('content-type:text/html;charset=gbk');

       if(!empty($_GET['parent_id'])){

           $id1 = M('goods_category')->where('id='.$_GET['id'])->find();

       }elseif(!empty($_GET['id'])){

           $id1 = M('goods_category')->where('parent_id='.$_GET['id'])->find();

       }else{

           $id1 = M('goods_category')->where('parent_id=1')->find();

       }

       if(!empty($id1['cat_group'])){

           $hostdir = './public/images/'.$id1['cat_group'].'/';

           $url = "./public/images/".$id1['cat_group'].'/';

           $filesnames = scandir($hostdir); //得到所有的文件

           $count = count($filesnames)-2;

           $www = 'http://localhost/'; //域名

           $aurl = array();

           foreach ($filesnames as $k => $name) {

               if($name == '.' || $name == ".."){

                   unset($name);

               }else{

                   $aurl[$k]['img']=  iconv('gbk','utf-8',$www.$url.$name); //图片

               }

               

           }

       }else{

           $aurl = '';

       }

上一篇:【web 开发】PHP中获取数组的元素个数
下一篇:没有了
网友评论