我試圖循環槽滿的圖像文件夾,並調整它們在另一個文件夾中的副本。當我試圖用它們中的一個來做時它工作正常,但是當我循環它時,它不起作用。不知道我做錯了什麼。我沒有得到任何錯誤。循環圖像文件夾並調整它們的大小
<?php
include_once 'dbconfig.php';
?>
<?php
// exec('/usr/bin/convert /home/forbes11/public_html/gallery/uploads/10114-20170610_211655_182.jpg -resize 340x340 /home/forbes11/public_html/gallery/uploads/thumbnails/10114-20170610_211655_182.jpg');
$sql = "SELECT * FROM tbl_uploads";
$result_set = mysql_query($sql);
while ($row = mysql_fetch_array($result_set))
{
$pic = $row['file'];
// echo $pic;
exec('/usr/bin/convert /home/forbes11/public_html/gallery/uploads/$pic -resize 340x340 /home/forbes11/public_html/gallery/uploads/thumbnails/$pic');
}
?>
好拿起@詹姆斯Meisler我總是用雙引號EXEC反正單引號不要在我的Windows本地主機的工作。 – Bonzo