如何在 symfony 中显示 mysql blob 字段中的图像?

发布于 2024-10-02 18:07:25 字数 328 浏览 2 评论 0原文

如何在 symfony 中显示来自 mysql blob 字段的图像?现在它只回显文本“Array”。

是否可以仅向 indexSuccess.php 添加新属性

<img src="<?php echo $persons->getPhoto('[property]') ?>" />

<img src="<?php echo $persons->getPhoto()->[property] ?>" />

正确打印它?

How do I display an image from a mysql blob field in symfony? Now it's only echo the text 'Array'.

Is it possible just to add a new property to the indexSuccess.php like

<img src="<?php echo $persons->getPhoto('[property]') ?>" />

or

<img src="<?php echo $persons->getPhoto()->[property] ?>" />

to print it correctly?

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

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

发布评论

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

评论(1

二手情话 2024-10-09 18:07:25

src 属性包含位置,而不是图像数据本身 - 数据 URI 除外。

您需要创建另一个页面来设置正确的标题并从数据库输出图像数据,并在 src 中指向该页面。

另一种方法是在 src 属性中回显 数据 URI

另请记住,如果您启用了输出转义,symfony 也会在将 blob 字段中的数据传递到视图层时对数据进行转义。

The src attribute contains a location, not the image data itself - with the exception of data URIs.

You need to create another page that sets the correct headers and outputs the image data from the DB, and point to that in your src.

The alternative is to echo a data URI in the src attribute.

Also keep in mind that if you have output escaping on, symfony also escapes the data in your blob field while being passed to the view layer.

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