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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?