drt3751 2014-05-05 05:40
浏览 39
已采纳

从php中的关联数组中删除文件路径

I am trying to get all files in a folder. The files are images along with one extra file named as "Thumbs.db"

fOLLowing is my code

$path = $ringPaths[$i];
        $dirname =   substr( $path ,0, -4 );
        $lastpart = basename( $dirname , ".zip");
        $abspath = substr( $dirname ,strpos( $dirname, "com/")+4 );
        $direcotypath = "../".$abspath."/".$lastpart;

        $files = glob($direcotypath."/*.*");
        foreach ($files as $key => &$value) 
        {
                $value = str_replace( "..", $url, $value);
            }

            $final = array_merge($final,$files);

I have tried removing Thumbs.db using following code

foreach ($final as $key => &$value) 
    {     

              if($value == "Thumbs.db")
              {
                unset($final[$key]); 
              }
        }

Anyone know what is wrong with above code? I am still in learning process

  • 写回答

1条回答 默认 最新

  • dqd2800 2014-05-05 05:48
    关注

    Reading the documentation for glob more closely, you will see that you can set flags to filter the type of files that will be returned.

    You can try something like:

    $files = glob($direcotypath . "/*.{jpg,jpeg,gif,png,bmp}", GLOB_BRACE);
    //                                 ^^^ Add more allowed extensions here.
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟
  • ¥15 树莓派控制机械臂传输命令报错,显示摄像头不存在
  • ¥15 前端echarts坐标轴问题
  • ¥15 ad5933的I2C