我在foreach循环中看到了图片。我需要检查图片是否可以从文件夹中读取并显示它。如果图片不在文件夹中或无法读取则必须打印一些消息。所以在以下代码中:
foreach($pictures as $picture){
if(is on disk in proper folder and can be readed properly){
echo HTML::image($picture);
}
else{
echo "can't read the picure";
}
}
如何检查图片是否在正确的文件夹中的磁盘上,并且可以正确加入?
答案 0 :(得分:1)
试试这个
foreach($pictures as $picture){
if(file_exists($picture)){
echo '<img src="'.$picture.'" />';
}
else{
echo "can't read the picure";
}
}