如何在 symfony 中显示 mysql blob 字段中的图像?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.