Rumah > Artikel > pembangunan bahagian belakang > 求PHP下载图片失败的解决办法
PHP 图片
就以下载如下图片为例吧 1、header("Content-type: image/jpeg");
2、去掉 BOM 头
1、header("Content-type: image/jpeg");
2、去掉 BOM 头
还是不能够正常的显示:(
那就是你的问题了
<?php ob_start(); readfile("http://images.wine9.com/goodsGallery/91/9187/60_90.jpg"); $img = ob_get_contents(); ob_end_clean(); header("Content-type: image/jpeg"); echo $img;
那就是你的问题了
<?php ob_start(); readfile("http://images.wine9.com/goodsGallery/91/9187/60_90.jpg"); $img = ob_get_contents(); ob_end_clean(); header("Content-type: image/jpeg"); echo $img;
文件编码UTF-8 BOM保存
文件编码UTF-8 BOM保存
试过了还是不可以:(
文件编码UTF-8 BOM保存
试过了还是不可以:(
在ob_start()下面加一句ob_clean()就好了
文件编码UTF-8 BOM保存
在ob_start()下面加一句ob_clean()就好了