• 返回json数据

返回json数据

1
2
3
4
5
6
7
8
9
//文件类型及编码方式
header("Content-type:text/html;charset=utf8");
//跳转页面
header("location:http://www.baidu.com");
//访问格式改成下载
header("Content-type:application/octet-stream");
header("content-disposition:attachment;filename-game.jpg");
$content = file_get_contents("123.jpg");
echo $content;