我需要使用PHP(和Laravel框架)在Android浏览器中查看(不下载)pdf文件。 我有这段代码:
return \Response::make(file_get_contents('/tmp/bg.pdf'), 200, [
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'inline'; filename="final.pdf",
]);
此代码在桌面浏览器(即Google Chrome,Firefox,Opera)中运行良好,但代码在Android浏览器(Google Chrome)中无效。
感谢。