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),因此您可能希望提高此值。
相关文章