使用php将pdf远程文件存储在postgres数据库中

发布于 2024-10-21 06:59:18 字数 754 浏览 1 评论 0原文

我有很少的 pdf(或 txt、odt、doc)文件要使用 php 存储在 Postgres DB 中。 我使用这个php函数来读取文件:

$fp = fopen($name, 'rb');

$content = fread($fp, filesize($name));

$content = addslashes($content);

fclose($fp);

然后尝试存储在数据库中:

$sql = "insert into Table(column) values ('$content'::bytea)";

$result = @pg_query($sql);

“column”是bytea类型。

当我使用 pdf 文件执行脚本时,出现以下错误:

ERROR: invalid byte sequence for encoding "UTF8": 0xe2e3cf HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding".

当我使用 doc 文件执行脚本时,出现以下错误:

ERROR: invalid input syntax for type bytea

当我使用 txt 文件执行脚本时,没有错误:

出了什么问题,正确的方法是什么存储文件?

I have little pdf (or txt, odt, doc) file to be store in Postgres DB with php.
I use this php functions to read file:

$fp = fopen($name, 'rb');

$content = fread($fp, filesize($name));

$content = addslashes($content);

fclose($fp);

and then try to store in db:

$sql = "insert into Table(column) values ('$content'::bytea)";

$result = @pg_query($sql);

"column" is bytea type.

When I execute the script with pdf file, I get the follow error:

ERROR: invalid byte sequence for encoding "UTF8": 0xe2e3cf HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding".

When I execute the script with doc file, I get the follow error:

ERROR: invalid input syntax for type bytea

When I execute the script with txt file, NO error:

What's wrong and what is the proper way to store files?

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

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

发布评论

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

评论(1

怀念你的温柔 2024-10-28 06:59:18

您是否尝试过使用pg_escape_string而不是addslasheshttp://www.php.net/manual/en/function .pg-escape-string.php

Have you tried using pg_escape_string instead of addslashes? http://www.php.net/manual/en/function.pg-escape-string.php

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