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!