如何在 PHP 中使用 fwrite 设置文件的 mime 类型?

发布于 2024-12-04 07:57:33 字数 561 浏览 0 评论 0原文

我需要创建一个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-12-11 07:57:33

在 Windows 上,文件没有 mime 类型。它们仅通过扩展名来识别。

On Windows, the files don't have mime types. They are identified by their extension only.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文