验证用户输入的字符串仅包含字母、数字和下划线

发布于 2024-09-25 23:13:40 字数 249 浏览 3 评论 0原文

$page = $_GET['page'];
if (isset($page))
    if (!preg_match('/[\w\d_]+/i', $page))
        die("Error");

我想允许字母和下划线。

我上面的代码有效,但假设我设置了 123...,这也有效。

preg_match() 是否无法在匹配后验证尾随字符?

$page = $_GET['page'];
if (isset($page))
    if (!preg_match('/[\w\d_]+/i', $page))
        die("Error");

I want to allow alphanum and underscore.

My above code works, but let say I set 123..., this works too.

Is preg_match() not able to validate trailing characters after the match?

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

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

发布评论

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

评论(2

长不大的小祸害 2024-10-02 23:13:40

只要字母数字作为 $page 的子字符串出现,正则表达式就会匹配。由于 123... 包含子字符串 123 ,它将传递您的正则表达式。

用于

/^\w+$/

匹配整个字符串。 (\w 已经意味着 [a-zA-Z0-9_] 所以你的 \d_i 修饰符是多余的。)

The regex will match as long as an alphanumeric appears as a substring of $page. Since 123... contains the substring 123 it will pass your regex.

Use

/^\w+$/

to match the whole string. (\w already means [a-zA-Z0-9_] so your \d, _ and the i modifier are redundant.)

燕归巢 2024-10-02 23:13:40

您需要使用锚点:

/^\w+$/

\w 已经有 \d_

You need to use anchors as:

/^\w+$/

\w already has \d and _

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