English 中文(简体)
预言
原标题:preg_match and long strings

这是正试图在文本档案中找到具体案文的序号。

if (preg_match($regexp,$textFile,$result) > 0) {
    echo "Found ".$result[0];
} else {
    echo "Not found";
}

然而,结果总是<代码>Found,而没有其他结果。 结果阵列空。 现在,我读到的是,前言——事项可以有长足的工作。

我的文本文件大约为300KB,这样就能够达到300 000个特性。

我确信,在文本档案中,搜索的扼杀是100%的,而预言——按功能回报价值超过0,则意味着它发现的,但它确实把它放在结果阵列中。

因此,我的问题是,我如何工作?

regexp将是/[具体文本]{(d*)}/,当然,希望能够取得括号内的数字。

最佳回答

我很高兴看到这个问题。 截至PHP5.2,它们对可使用PCRE功能的案文规模作了限制,而这种功能的缺损为100k。 这并非坏事。 坏部分是,如果超过<>,它就会sil然失灵。

解决办法? 限额。 初始参数为<代码>pcre.back Line_limit。

问题回答

不适用<代码>pcre限额。 不了解这些事情。 这是一种与S.php pcre 共同的 b。

Read this awesome answer by @ridgerunner : https://stackoverflow.com/a/7627962/1077650

这一类别的reg将重复(无声)坠毁的阿帕奇/PHP,由于四分五裂的过错!

PHP Bug1:PHPs:pcre.recursion_limit过于庞大。

PHP Bug2:preg_match(>,在错误上不退还FLSE。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签