Has anyone gotten this function to work with virtual directories?

This is my setup:

C:\apache\Apache2\htdocs
c:\php

Virtual Directory:

d:\photos

I have a script with this (modified) example function in it (from the
documentation).

This works:




$origpath = "\photos\010202\010202_001.jpg";

$exif = exif_read_data ($origpath,0,true);
echo "test2.jpg:<br />\n";
foreach($exif as $key=>$section) {
    foreach($section as $name=>$val) {
        echo "$key.$name: $val<br />\n";
    }
}




Thanks,

John Ellingsworth


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to