(PHP 4, PHP 5, PHP 7, PHP 8)
preg_match_all — 執(zhí)行一個(gè)全局正則表達(dá)式匹配
$pattern
,$subject
,&$matches
= null
,$flags
= 0,$offset
= 0
搜索subject
中所有匹配pattern
給定正則表達(dá)式
的匹配結(jié)果并且將它們以flag
指定順序輸出到matches
中.
在第一個(gè)匹配找到后, 子序列繼續(xù)從最后一次匹配位置搜索.
pattern
要搜索的模式,字符串形式。
subject
輸入字符串。
matches
多維數(shù)組,作為輸出參數(shù)輸出所有匹配結(jié)果, 數(shù)組排序通過(guò)flags
指定。
flags
可以結(jié)合下面標(biāo)記使用(注意不能同時(shí)使用PREG_PATTERN_ORDER
和
PREG_SET_ORDER
):
PREG_PATTERN_ORDER
結(jié)果排序?yàn)?var class="varname">$matches[0]保存完整模式的所有匹配, $matches[1] 保存第一個(gè)子組的所有匹配,以此類(lèi)推。
<?php
preg_match_all("|<[^>]+>(.*)</[^>]+>|U",
"<b>example: </b><div align=left>this is a test</div>",
$out, PREG_PATTERN_ORDER);
echo $out[0][0] . ", " . $out[0][1] . "\n";
echo $out[1][0] . ", " . $out[1][1] . "\n";
?>
以上例程會(huì)輸出:
<b>example: </b>, <div align=left>this is a test</div> example: , this is a test
因此, $out[0]是包含匹配完整模式的字符串的數(shù)組, $out[1]是包含閉合標(biāo)簽內(nèi)的字符串的數(shù)組。
如果正則表達(dá)式包含了帶名稱(chēng)的子組,$matches 額外包含了帶名稱(chēng)子組的鍵。
如果正則表達(dá)式里,子組名稱(chēng)重名了,則僅最右側(cè)的子組儲(chǔ)存在 $matches[NAME] 中。
<?php
preg_match_all(
'/(?J)(?<match>foo)|(?<match>bar)/',
'foo bar',
$matches,
PREG_PATTERN_ORDER
);
print_r($matches['match']);
?>
以上例程會(huì)輸出:
Array ( [0] => [1] => bar )
PREG_SET_ORDER
結(jié)果排序?yàn)?var class="varname">$matches[0]包含第一次匹配得到的所有匹配(包含子組), $matches[1]是包含第二次匹配到的所有匹配(包含子組)的數(shù)組,以此類(lèi)推。
<?php
preg_match_all("|<[^>]+>(.*)</[^>]+>|U",
"<b>example: </b><div align=\"left\">this is a test</div>",
$out, PREG_SET_ORDER);
echo $out[0][0] . ", " . $out[0][1] . "\n";
echo $out[1][0] . ", " . $out[1][1] . "\n";
?>
以上例程會(huì)輸出:
<b>example: </b>, example: <div align="left">this is a test</div>, this is a test
PREG_OFFSET_CAPTURE
如果這個(gè)標(biāo)記被傳遞,每個(gè)發(fā)現(xiàn)的匹配返回時(shí)會(huì)增加它相對(duì)目標(biāo)字符串的字節(jié)偏移量。
注意這會(huì)改變matches
中的每一個(gè)匹配結(jié)果字符串元素,使其
成為一個(gè)第0
個(gè)元素為匹配結(jié)果字符串,第1
個(gè)元素為
匹配結(jié)果字符串在subject
中的偏移量。
<?php
preg_match_all('/(foo)(bar)(baz)/', 'foobarbaz', $matches, PREG_OFFSET_CAPTURE);
print_r($matches);
?>
以上例程會(huì)輸出:
Array ( [0] => Array ( [0] => Array ( [0] => foobarbaz [1] => 0 ) ) [1] => Array ( [0] => Array ( [0] => foo [1] => 0 ) ) [2] => Array ( [0] => Array ( [0] => bar [1] => 3 ) ) [3] => Array ( [0] => Array ( [0] => baz [1] => 6 ) ) )
PREG_UNMATCHED_AS_NULL
傳入此標(biāo)記,未匹配的子組報(bào)告為 null
;否則會(huì)是空 string。
如果沒(méi)有給定排序標(biāo)記,假定設(shè)置為PREG_PATTERN_ORDER
。
offset
通常, 查找時(shí)從目標(biāo)字符串的開(kāi)始位置開(kāi)始??蛇x參數(shù)offset
用于
從目標(biāo)字符串中指定位置開(kāi)始搜索(單位是字節(jié))。
注意:
使用
offset
參數(shù)不同于傳遞substr($subject, $offset)
的 結(jié)果到 preg_match_all() 作為目標(biāo)字符串,因?yàn)?pattern
可以包含斷言比如^, $ 或者 (?<=x) 。 示例查看 preg_match()。
返回完整匹配次數(shù)(可能是0),或者如果發(fā)生錯(cuò)誤返回false
。
版本 | 說(shuō)明 |
---|---|
7.2.0 |
現(xiàn)在 $flags 參數(shù)可以支持 PREG_UNMATCHED_AS_NULL 。
|
示例 #1 查找所有文本中的電話(huà)號(hào)碼。
<?php
preg_match_all("/\(? (\d{3})? \)? (?(1) [\-\s] ) \d{3}-\d{4}/x",
"Call 555-1212 or 1-800-555-1212", $phones);
?>
示例 #2 查找匹配的HTML標(biāo)簽(貪婪)
<?php
//\\2是一個(gè)后向引用的示例. 這會(huì)告訴pcre它必須匹配正則表達(dá)式中第二個(gè)圓括號(hào)(這里是([\w]+))
//匹配到的結(jié)果. 這里使用兩個(gè)反斜線(xiàn)是因?yàn)檫@里使用了雙引號(hào).
$html = "<b>bold text</b><a href=howdy.html>click me</a>";
preg_match_all("/(<([\w]+)[^>]*>)(.*?)(<\/\\2>)/", $html, $matches, PREG_SET_ORDER);
foreach ($matches as $val) {
echo "matched: " . $val[0] . "\n";
echo "part 1: " . $val[1] . "\n";
echo "part 2: " . $val[2] . "\n";
echo "part 3: " . $val[3] . "\n";
echo "part 4: " . $val[4] . "\n\n";
}
?>
以上例程會(huì)輸出:
matched: <b>bold text</b> part 1: <b> part 2: b part 3: bold text part 4: </b> matched: <a href=howdy.html>click me</a> part 1: <a href=howdy.html> part 2: a part 3: click me part 4: </a>
示例 #3 使用子命名組
<?php
$str = <<<FOO
a: 1
b: 2
c: 3
FOO;
preg_match_all('/(?P<name>\w+): (?P<digit>\d+)/', $str, $matches);
/* 選擇方式 */
// preg_match_all('/(?<name>\w+): (?<digit>\d+)/', $str, $matches);
print_r($matches);
?>
以上例程會(huì)輸出:
Array ( [0] => Array ( [0] => a: 1 [1] => b: 2 [2] => c: 3 ) [name] => Array ( [0] => a [1] => b [2] => c ) [1] => Array ( [0] => a [1] => b [2] => c ) [digit] => Array ( [0] => 1 [1] => 2 [2] => 3 ) [2] => Array ( [0] => 1 [1] => 2 [2] => 3 ) )