沃梦达 / 编程问答 / php问题 / 正文

Preg_Match有字符串大小限制

preg_match has string size limit(Preg_Match有字符串大小限制)

本文介绍了Preg_Match有字符串大小限制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

preg_match在PHP 5.2.5上有字符串限制

<?php
    $str1 = 'a@b%c@d' . str_repeat ('=', 33326);
    $str2 = 'a@b%c@d' . str_repeat ('=', 33327);
    $regexp = '/^(.*)@(.*)%(.*)$/si';

    echo preg_match ($regexp, $str1) ? "Correct " : "Wrong ";  // works correctly
    echo "
";
    echo preg_match ($regexp, $str2) ? "Correct " : "Wrong ";  // exhibits the bug
    echo "
";

推荐答案

preg_last_error()在第二次调用后返回2(=PREG_BACKTRACK_LIMIT_ERROR),因此您可能希望提高此值。

这篇关于Preg_Match有字符串大小限制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:Preg_Match有字符串大小限制

基础教程推荐