如何在 PHP 中使用 fwrite 设置文件的 mime 类型?
我需要创建一个 .xls 文件并为其分配正确的 mimetype。一个简单的 header()
语句不起作用可能是因为我使用的是 PHPGtk。
MSOffice 在打开文件时给我一个错误,它说内容可能无法反映文件的扩展名,所以我立即认为这可能是因为 mime 类型。
目前,代码是(在一个格式非常错误的 html 片段中):
$table = '<table><thead><tr><th>Oi</th></tr></thead><tbody><tr><td>opaopaopa</td></tr><tr><td>sjiasiaj</td></tr></tbody></table>';
$handle = fopen('C:\opa.xls','w+');
fwrite($handle, $table);
fclose($handle);
I need to create a .xls file and assign the correct mimetype to it. A simple header()
statement didn't work probably because i'm using PHPGtk.
MSOffice gives me an error when opening the file, it says the content may not reflect the extension of the file, so i immediately thought it could be because of the mime type.
Currently, the code is (in a very malformed html snippet):
$table = '<table><thead><tr><th>Oi</th></tr></thead><tbody><tr><td>opaopaopa</td></tr><tr><td>sjiasiaj</td></tr></tbody></table>';
$handle = fopen('C:\opa.xls','w+');
fwrite($handle, $table);
fclose($handle);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Windows 上,文件没有 mime 类型。它们仅通过扩展名来识别。
On Windows, the files don't have mime types. They are identified by their extension only.