在一台服务器上,我成功写了如下镜像:
$structure = "./images/$root->City/$root->ZipCode/$root->StreetDirection $root->StreetName/";
file_put_contents("./$structure/$root->StreetNumber $root->StreetDirection $root->StreetName $root->StreetSuffix $root->City $root->ZipCode-{$number}.jpeg", $photo['Data']);
然后我尝试使用以下内容检索并显示相同的图像相同的位置,没有任何反应(损坏的图像链接):
$structure = "../images/$City_R/$Zip_Code_R/$StreetDirection $StreetName $StreetSuffix/$StreetNumber $StreetDirection $StreetName $StreetSuffix $City_R $Zip_Code_R-1";
$img = '<img src="'.$structure.'.jpeg" style="border-style:solid; border-width:10px; border-color:#fff; width=500px; id=Main_Image;"><br/>';
echo '$img';
在测试中,似乎只在名称大大简化且未指定动态目录时才拉取...,实际上,它完全忽略了目录...