我正在尝试匹配在字符串中找到的所有日期,这是函数
$description = "1999 2008 1998";
if(preg_match("/[12][0-9]{3}/", $description, $matches)){
print_r($matches);
}
问题是只返回第一个日期,即1999
我实际上想匹配所有日期。
我应该在正则表达式中更改什么?
你是这个意思吗?
<?php
$description = "1999 2008 1998";
if(preg_match_all("/[12][0-9]{3}/", $description, $matches)){
print_r($matches);
}
唯一的区别是preg_match_all
代替preg_match
.
<?php
$description = "1999 2008 1998";
$a = Array(preg_match_all('/(\d{4})*/', $description, $matches));
$count = count($matches);
for ($i = 0; $i <= $count + 2; $i++) {
echo $matches[0][$i] . "\n";
}
?>
输出
1999
2008
1998