如何在 php 中使用 CSV 文件导出图像?
我正确导出 CSV 文件,但我还想导出图像,我该怎么办?
提前致谢 问候 基兰
I am exporting CSV file correctly but i want to export images also what should i do?
Thanks in advance
Regards
kiran
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
声明
您实际上无法以任何逻辑方式在 CSV 文档中包含图像。
可能性 1
如果它是托管在某个位置并带有 URL 的图像,那么您可以将该 URL 作为值包含在 CSV 中。
可能性 2
否则,您可以将整个图像作为 base64 编码字符串包含在内:
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: