如何在 php 中使用 CSV 文件导出图像?

发布于 2024-11-07 11:39:32 字数 54 浏览 0 评论 0原文

我正确导出 CSV 文件,但我还想导出图像,我该怎么办?

提前致谢 问候 基兰

I am exporting CSV file correctly but i want to export images also what should i do?

Thanks in advance
Regards
kiran

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眼前雾蒙蒙 2024-11-14 11:39:32

声明

您实际上无法以任何逻辑方式在 CSV 文档中包含图像。

可能性 1

如果它是托管在某个位置并带有 URL 的图像,那么您可以将该 URL 作为值包含在 CSV 中。

可能性 2

否则,您可以将整个图像作为 base64 编码字符串包含在内:

 $fh = fopen('/my/tmp/file.csv');
 $values['name'] = 'Kiran';
 $values['image'] = base64_encode(file_get_contents('/my/file/path.jpg'));
 fputcsv($fh, $fields);

Statement

You can't really have images in a CSV document in any logical way.

Possibility 1

If it is an image hosted somewhere with a URL then you could include the URL as a value in the CSV.

Possibility 2

Otherwise you could include the whole image as a base64 encoded string:

 $fh = fopen('/my/tmp/file.csv');
 $values['name'] = 'Kiran';
 $values['image'] = base64_encode(file_get_contents('/my/file/path.jpg'));
 fputcsv($fh, $fields);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文