图像存在于我的服务器中,但我无法在以下代码的帮助下找到或显示图像
$myimages='/uk/images/7.jpg';
echo $myimages;
echo '<img src="'; echo $myimage; echo '">';
if (file_exists($myimages)) {
echo "The file $myimages exists";
}
else {
echo "The file $myimages does not exist";
$myimages=$info['aw_image_url'];
echo $myimages;
}
代码总是返回The file doesn't exist
也不显示图像。代码有什么问题?