我想在浏览器中显示一个execl
文件,类似于查看PDF文件的方式。有什么方法可以实现这一点。我已经使用了execl library
,但这不符合我的要求。
这是我想在excel中使用但不起作用的示例
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
我还使用PHPExcel库在浏览器上查看execl文件,但它不能正常工作