dongxia9519 2013-11-08 17:31
浏览 60
已采纳

在PHP中的glob()中转义空格?

I have the following function in PHP, which is working great except for files with spaces in their names (Good picture.jpg for example). Here it is:

function getphotolist($currentalbum) {
    $photos = glob($currentalbum.'/*.[Jj][Pp][Gg]');
    $albumparts = explode('_', $currentalbum);
    switch (array_key_exists(2,$albumparts)) {
        case false:
            usort($photos,"cmpexiftime");
            break;
        case true:
            usort($photos,"cmpexiftimer");
            break;
    }
    $photolist = "";
    foreach($photos as $photo){ 
        $phototitle = explode('_',basename($photo,".jpg"));
        $title = $phototitle[0];
        $thumb = $currentalbum.'/thumbs/'.basename($photo,".jpg").'_thumb.jpg';
        $exif = read_exif_data_raw("$photo",0);
        $desc = $exif["IFD0"]["ImageDescription"];
        $camera = ucwords(strtolower($exif["IFD0"]["Model"]));
        switch($exif["SubIFD"]["LensInfo"]) {
            case "105.0 mm f/2.8":
                $lens = "AF-S Micro-Nikkor 105mm ƒ/2.8 VR";
                break;
            case "50.0 mm f/1.8":
                if ($camera=="Nikon D700") {
                    $lens = "AF-S Nikkor 50mm ƒ/1.8 G";
                } else {
                    $lens = "AF Nikkor 50mm ƒ/1.8 D";
                }
                break;
            case "18.0-55.0 mm f/3.5-5.6":
                $lens = "AF-S Nikkor 18-55mm ƒ/3.5-5.6 II";
                break;
            default:
                $lens = $exif["SubIFD"]["LensInfo"];
                break;
        }
        $length = str_replace(" ","",$exif["SubIFD"]["FocalLength"]);
        $shutter = str_replace(" ","",str_replace("ec","",$exif["SubIFD"]["ShutterSpeedValue"]));
        $aperture = str_replace("f","ƒ",$exif["SubIFD"]["ApertureValue"]);
        $iso = $exif["SubIFD"]["ISOSpeedRatings"];
        list($width,$height) = getimagesize($photo);
        if ($height==1080 && $width==1920) {
            $photolist .= '<span data-title="'.$title.'" data-thumb="'.$thumb.'" data-desc="'.$desc.'" data-camera="'.$camera.'" data-lens="'.$lens.'" data-length="'.$length.'" data-shutter="'.$shutter.'" data-aperture="'.$aperture.'" data-iso="'.$iso.'" style="background-image:url('.$photo.'); background-size:cover;" class="slide"></span>';
        } elseif ($height >= $width) {                            
            $photolist .= '<span data-title="'.$title.'" data-thumb="'.$thumb.'" data-desc="'.$desc.'" data-camera="'.$camera.'" data-lens="'.$lens.'" data-length="'.$length.'" data-shutter="'.$shutter.'" data-aperture="'.$aperture.'" data-iso="'.$iso.'" style="background-image:url('.$photo.'); background-size:contain;" class="slide"></span>';
        } else {
            $photolist .= '<span data-title="'.$title.'" data-thumb="'.$thumb.'" data-desc="'.$desc.'" data-camera="'.$camera.'" data-lens="'.$lens.'" data-length="'.$length.'" data-shutter="'.$shutter.'" data-aperture="'.$aperture.'" data-iso="'.$iso.'" style="background-image:url('.$photo.'); background-size:contain;" class="slide"></span>';
        }
    }
return $photolist;
}

Can anyone suggest how to fix this to work with files with spaces? Thanks!

  • 写回答

1条回答 默认 最新

  • doulangchao8934 2013-11-08 19:08
    关注

    As explained here, try using this code to escape space in filename when using glob:

    $albumEscaped = str_replace(' ', '\ ', $currentalbum); 
    $photos = glob($albumEscaped .'/*.[Jj][Pp][Gg]');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况
  • ¥15 画两个图 python或R
  • ¥15 在线请求openmv与pixhawk 实现实时目标跟踪的具体通讯方法
  • ¥15 八路抢答器设计出现故障
  • ¥15 opencv 无法读取视频
  • ¥15 按键修改电子时钟,C51单片机