int preg_match_all ( string pattern, string subject, array matches [, int flags])
在 subject 中搜索所有与 pattern 给出的正则表达式匹配的内容并将结果以 flags 指定的顺序放到 matches 中。
搜索到第一个匹配项之后,接下来的搜索从上一个匹配项末尾开始。
flags 可以是下列标记的组合(注意把 preg_pattern_order 和 preg_set_order 合起来用没有意义):
preg_pattern_order
对结果排序使 $matches[0] 为全部模式匹配的数组,$matches[1] 为第一个括号中的子模式所匹配的字符串组成的数组,以此类推。
代码如下 复制代码
(.*)[^>]+>|u,
example:
this is a test
,
$out, preg_pattern_order);
print $out[0][0]., .$out[0][1]./n;
print $out[1][0]., .$out[1][1]./n;
?>
本例将输出:
example: , this is a test example: , this is a test
因此,$out[0] 包含匹配整个模式的字符串,$out[1] 包含一对 html 标记之间的字符串
对结果排序使 $matches[0] 为全部模式匹配的数组,$matches[1] 为第一个括号中的子模式所匹配的字符串组成的数组,以此类推。(即$matches[0] [0]为全部模式匹配中的每一项,$matches[0] [1]为全部模式匹配中的第二项,$matches[1] [0]为匹配每一个括号中的第一项,$matches[1] [0]为匹配每一个括号中的第二项)
代码如下 复制代码
(.*)[^>]+>|u,
example:
this is a test
,
$out, preg_pattern_order);
print $out[0][0]., .$out[0][1].n;
print $out[1][0]., .$out[1][1].n;
?>
本例将输出:
example: ,
this is a test
example: , this is a test
因此,$out[0] 包含匹配整个模式的字符串,$out[1] 包含一对 html 标记之间的字符串。
如果使用preg_set_order
对结果排序使 $matches[0] 为第一组匹配项的数组,$matches[1] 为第二组匹配项的数组,以此类推。(即$matches[0] [0]为第一组匹配项中完整匹配的字符串,$matches[0] [1]为第一组匹配中完整匹配第一个括号中的字符串)
代码如下 复制代码
(.*)[^>]+>|u,
example:
this is a test
,
$out, preg_set_order);
print $out[0][0]., .$out[0][1].n;
print $out[1][0]., .$out[1][1].n;
?>
本例将输出:
example: , example:
this is a test
, this is a test
本例中,$matches[0] 是第一组匹配结果,$matches[0][0] 包含匹配整个模式的文本,$matches[0][1] 包含匹配第一个子模式的文本,以此类推。同样,$matches[1] 是第二组匹配结果,等等。
preg_offset_capture
如果设定本标记,对每个出现的匹配结果也同时返回其附属的字符串偏移量。注意这改变了返回的数组的值,使其中的每个单元也是一个数组,其中第一项为匹配字符串,第二项为其在 subject 中的偏移量。本标记自 php 4.3.0 起可用。
如果没有给出标记,则假定为 preg_pattern_order。
返回整个模式匹配的次数(可能为零),如果出错返回 false。
例子 1. 从某文本中取得所有的电话号码
代码如下 复制代码
例子 2. 搜索匹配的 html 标记(greedy)
代码如下 复制代码
)(.*)(\2>)/, $html, $matches);
for ($i=0; $i
echo matched: .$matches[0][$i].n;
echo part 1: .$matches[1][$i].n;
echo part 2: .$matches[3][$i].n;
echo part 3: .$matches[4][$i].nn;
}
?>
本例将输出:
matched: bold text
part 1:
part 2: bold text
part 3:
matched: click me
part 1:
part 2: click me
part 3:
例1. 在文本中搜索“php”
代码如下 复制代码
例2. 搜索单词“web”
代码如下 复制代码
例3. 从 url 中取出域名
代码如下 复制代码
输出:
domain name is: php.net
preg_match_all 导致apache 重启的解决办法
如 preg_match_all(/ni(.*?)wo/, $html, $matches);)进行分析匹配比较长的字符串 $html 时(大于10万字节,一般用于分析采集回来的网页源码),apache服务器会崩溃自动重启。
在apache错误日志里有这样的提示:
[thu apr 11 18:31:31 2013] [notice] parent: child process exited with status 128 -- restarting.
[thu apr 11 18:31:31 2013] [notice] apache/2.2.9 (win32) php/5.2.17 configured -- resuming normal operations
[thu apr 11 18:31:31 2013] [notice] server built: jun 13 2008 04:04:59
[thu apr 11 18:31:31 2013] [notice] parent: created child process 2964
[thu apr 11 18:31:31 2013] [notice] disabled use of acceptex() winsock2 api
[thu apr 11 18:31:31 2013] [notice] child 2964: child process is running
[thu apr 11 18:31:31 2013] [notice] child 2964: acquired the start mutex.
[thu apr 11 18:31:31 2013] [notice] child 2964: starting 350 worker threads.
[thu apr 11 18:31:31 2013] [notice] child 2964: listening on port 80.
那么如何增加win平台下 threadstacksize 的大小呢? 在apache的配置文件 httpd.conf 里启用 “include conf/extra/httpd-mpm.conf”(删除前面的注释#),然后在 httpd-mpm.conf 文件里的 mpm_winnt_module 配置模块里设置 “threadstacksize 8400000”即可(大约8m)。
代码如下 复制代码
代码如下 复制代码
threadstacksize 8400000
threadsperchild 200
maxrequestsperchild 10000
win32disableacceptex
这里需要注意的是,32位的apache程序只能最多使用大约2gb内存空间! 因此,threadstacksize 和threadsperchild 的值相乘后(8m * 200)不应该超过2g,否则无法启动apache,出现的错误日志如下:
[thu apr 11 20:02:45 2013] [crit] (os 8)存储空间不足,无法处理此命令。 : child 4832: _beginthreadex failed. unable to create all worker threads. created 212 of the 220 threads requested with the threadsperchild configuration directive.
通过上面的提示,飘易可以告诉大家的是在我的这台服务器上,当线程堆栈大小设为8m时,我可以设置的线程数最多是212个。
