我有一个拇指生成器脚本,需要我使用define 来指示文件夹的路径...我从/images/galleries/name/imagem.jpg 形式的mySQL 字段中挑选它
我想我这样做是菜鸟的方式......必须有更好的方法来做到这一点!
while($r3 = mysql_fetch_array($e3)){
$path = $r3['pathURLMult'];
$ped = explode("/", $path);
$path2 = $ped[0] . "/" . $ped[1] . "/" . $ped[2] . "/";
define("FOLDER_IMAGES","$path2");
$imagem = $ped[3];
echo "<img src=\"getimage.php?img=$imagem&w=280&h=180\" width=\"280\" height=\"180\" />";
}
有人可以帮忙吗?提前致谢