Heim  >  Artikel  >  php教程  >  php遍历读取文件夹/目录图片信息

php遍历读取文件夹/目录图片信息

WBOY
WBOYOriginal
2016-06-08 17:22:201272Durchsuche

今天帮助一个客户做一上企业网站,发现企业网站做好之后它准备了几百张图片让我上传,这个对于我来讲非常的不想做了,但后来发现可以直接使用程序读取目录然后保存到mysql中就可以解决了,下面我只找到一个函数关于mysql操作部份呆会我再写。

<script>ec(2);</script>
 代码如下 复制代码

 
    $dir="images/";//定义路径
 
    $dir_res=opendir($dir);//打开目录
 
    $fileFormat=array(0=>".jpg",1=>".gif",2=>".png",3=>".bmp");//图片格式
 
    while(false !== ( $filen=readdir($dir_res) ) )
    {
    for($i=0;$i     {
       if(substr($filen,strpos($filen,"."))==$fileFormat[$i])
       {
        //echo '
php遍历读取文件夹/目录图片信息
';  
        $img_arr[] = $dir.$filen;   //存入数组
        break ;
       } www.111cn.net
    }
    }
    closedir($dir_res);
    //print_r( json_encode($img_arr) );//转json格式
    $s=json_encode($img_arr);
    echo $s;
?>

script代码

 代码如下 复制代码

<script><br /> $(function(){<br /> $.ajax({<br /> url: 'img.php',<br /> type: 'POST',<br /> dataType: 'JSON',<br /> data: {param1: 'value1'},<br /> })<br /> .done(function(data) {<br /> //console.log("success");<br /> for(attr in data) {<br /> <br /> $("body").append("<img src="+ data[attr] +" / alt="php遍历读取文件夹/目录图片信息" >");<br /> }<br /> })<br /> .fail(function() {<br /> console.log("error");<br /> })<br /> .always(function() {<br /> console.log("complete");<br /> });<br /> <br /> }) <br /> </script>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn