<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
echo '<img src="img/print.png" /><br>';
echo 'check';
?>
</body>
</html>
我使用此代码在we-browser中显示图像 然后我用这段代码下载.doc格式的文件
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-disposition: attachment; filename=nyoba.doc");
echo '<img src="img/print.png" /><br>';
echo 'check';
?>
</body>
</html>
但图片不仅仅包含未找到或已删除的文字图片, 这个问题的解决方案是什么? 对不起,我会说英语很好