SQL中intval和db_escape有什么区别?

发布于 2024-11-07 00:29:06 字数 172 浏览 0 评论 0原文

我有朋友告诉我更改一些代码。

其中一个告诉我将代码更改为:

intval($_GET['id']);

另一个告诉我更改为:

db_escape($_GET);

谁是对的,为什么?

I've got friends who's telling me to change some code.

One of them is telling me to change my code into:

intval($_GET['id']);

And the other tells me to change into:

db_escape($_GET);

Who is right, and why?

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

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

发布评论

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

评论(1

不气馁 2024-11-14 00:29:06

Intval 专门用于数字。使用 intval 可以将任何无效数字转换为“0”。使用 db_escape(),您可以准备要插入数据库的字符串和其他内容。
所以两者都是对的,这取决于您要插入的内容:-) 如果您想插入一个数字或者如果您想选择一个带有 id 的条目,

$query = "SELECT * FROM table WHERE id = " . intval($GET_["id"]);

那么您应该使用 intval。如果你想插入文本,你应该使用db_escape。

$query = "INSERT INTO table (stringCol) VALUES('" . db_escape($_POST['string']) . "')";

Intval is specifically for numbers. With intval you transform anything what is not a valid number to "0". With db_escape() you can prepare strings and other stuff to be inserted into a database.
So both are right, it depends on what you want to insert :-) If you want to insert a number or if you want to select an entry with its id

$query = "SELECT * FROM table WHERE id = " . intval($GET_["id"]);

then you should use intval. If you want to insert a text, you should use db_escape.

$query = "INSERT INTO table (stringCol) VALUES('" . db_escape($_POST['string']) . "')";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文