选择 pg_fetch_row 数据类型

发布于 2024-10-12 06:42:27 字数 155 浏览 1 评论 0原文

当我使用 pg_fetch_row 时,所有值都以“字符串”形式返回。有没有什么方法(除了遍历返回值的数组)来选择某些列的类型(例如,当我选择一个整数时,我想要 42 而不是 "42") ?

谢谢您的宝贵时间。

When I use pg_fetch_row all the values are returned as "string". Is there any way (other than walking the array of returned values) to choose the type of some of the columns (for instance when I select an integer I want 42 not "42") ?

Thank you for your time.

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

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

发布评论

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

评论(1

水波映月 2024-10-19 06:42:27

恐怕不是......它总是返回字符串,你必须自己转换它们。

由于 PHP 在需要时会隐式转换,因此通常不会有太大问题,但如果您需要它......您将必须手动完成。

I'm afraid not... it always returns strings and you have to convert them yourself.

Since PHP implicitly converts when needed, usually not that much of a problem but if you need it... you'll have to do it manually.

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