php批量文件循环读取问题。
我有3个图像文件已经在服务器上。说它是picture1.jpg,picture2.jpg,picture3.jpg 我有这个代码读取文件,但$ thepic = fread($ fh,$ fs);只读数组中的最后一个文件(picture3.jpg)。
$imgfolder = "images/";
foreach ($picturefile as $pfile) {
echo $imgpath = "./". $imgfolder.$pfile; // This echo shows all files path when loop run
$picFile = $imgpath;
$fh = fopen($picFile, 'r');
$fs = filesize($picFile);
$thepic = fread($fh, $fs);
echo $thepic; // $thepic variable only show last file.
echo "<br>-----------------------------------------------<br>";
fclose($fh);
}