gpt4 book ai didi

php - Laravel - 使用 postgre bytea blob 字段

转载 作者:可可西里 更新时间:2023-10-31 22:57:20 25 4
gpt4 key购买 nike

我在 Laravel 安装上使用 PostgreSQL。一个表有一个 bytea 类型字段,用于存储二进制数据(base64_encoded 文件内容)。

当我使用 Eloquent 检索表时,我在该字段中返回了一个资源类型变量。

我怎样才能将其作为字符串检索?

$raw = Media::where('id','=',$id)->first();
$raw->file_data = base64_decode($raw->file_data); // doesn't work

最佳答案

由于这个问题的作者没有发布答案的细节,我将在这里发布我的发现。

由于返回的字段是流的句柄,您可以使用 stream_get_contents函数将值读入字符串,然后可以使用 pg_unescape_bytea 获取 bytea 数据的实际值。最后,如果您希望以 HTML 格式显示 bytea 数据,请使用 htmlspecialchars 函数。

示例代码:

$my_bytea = stream_get_contents($resource);
$my_string = pg_unescape_bytea($my_bytea);
$html_data = htmlspecialchars($my_string);

关于php - Laravel - 使用 postgre bytea blob 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11329323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com