包含反斜杠的正则表达式模式会导致 preg_replace() 失败

发布于 2024-11-18 11:51:27 字数 348 浏览 5 评论 0原文

据我所知,我已经完全按照规定做了,但 PCRE 对我来说完全没有意义,所以我要问你这段代码有什么问题,为什么它说:

偏移量 10 英寸处的字符类缺少终止符 ]

  $UrlTeams = preg_replace(
    array(
        "/[\/\\\40][\\]?/",
        "/[\.%]/",
        "/\&/"
    ),
    array(
        "/\-/",
        "",
        "\&amp\;"
    ),
    $UrlTeams
  );

So as far as I know, I have done this exactly as prescribed I should do, but PCRE makes absolutely no sense to me at all, so I am going to ask you what is wrong with this code and why does it say:

missing terminating ] for character class at offset 10 in

  $UrlTeams = preg_replace(
    array(
        "/[\/\\\40][\\]?/",
        "/[\.%]/",
        "/\&/"
    ),
    array(
        "/\-/",
        "",
        "\&\;"
    ),
    $UrlTeams
  );

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

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

发布评论

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

评论(1

白况 2024-11-25 11:51:27

尝试:

$UrlTeams = preg_replace(
    array(
        "#[/\40\\\\][\\\\]?#",
        "#[.%]#",
        "#[&]#"
    ),
    array(
        "-",
        "",
        "&"
    ),
    $UrlTeams
  );

Try:

$UrlTeams = preg_replace(
    array(
        "#[/\40\\\\][\\\\]?#",
        "#[.%]#",
        "#[&]#"
    ),
    array(
        "-",
        "",
        "&"
    ),
    $UrlTeams
  );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文