preg_split 导致连接重置

发布于 2024-10-10 00:32:25 字数 189 浏览 3 评论 0原文

preg_split("/({{\s*(?:(?!}}).)+\s*}})/s", file_get_contents('data.txt'));

该行使 Apache 重置连接。 data.txt 大约为 12 kB。

我做错了什么,我可以以某种方式优化正则表达式吗?

preg_split("/({{\s*(?:(?!}}).)+\s*}})/s", file_get_contents('data.txt'));

That line makes Apache reset the connection. data.txt is approximately 12 kB.

What am I doing wrong, can I optimize the regex somehow?

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

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

发布评论

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

评论(2

知你几分 2024-10-17 00:32:25

尝试使用这个正则表达式:

/({{(?>(?:[^}]|}[^}])+)}})/s

主要改进:

  • (?>…)原子分组以避免回溯
  • (?:[^}]|}[^}])+ – 不看-周围,​​没有非贪婪匹配

Try this regular expression instead:

/({{(?>(?:[^}]|}[^}])+)}})/s

The main improvements:

  • (?>…)atomic grouping to avoid backtracking
  • (?:[^}]|}[^}])+ – no look-around, no non-greedy matching
花海 2024-10-17 00:32:25

尝试将文件读入变量而不是将其传递给 preg_split。我认为这是 file_get_contents问题而不是preg_split`。

Try reading the file into a variable than passing it to preg_split. I think it's file_get_contentsproblem rather thanpreg_split`.

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