PHP preg_match(。*)与过去的换行符不匹配

我在LONGTEXT列中有此数据(因此保留了换行符):

Paragraph one

Paragraph two

Paragraph three

Paragraph four

我正在尝试将第1段到第3段匹配。我正在使用以下代码:

preg_match('/Para(.*)three/', $row['file'], $m);

这什么也不会返回。如果我尝试通过匹配以下内容在段落的第一行中工作:

preg_match('/Para(.*)one/', $row['file'], $m);

然后代码工作,我得到正确的字符串返回。我在这里做错了什么?

回答:

使用s修饰符。

preg_match('/Para(.*)three/s', $row['file'], $m);

http://php.net/manual/zh/reference.pcre.pattern.modifiers.php

以上是 PHP preg_match(。*)与过去的换行符不匹配 的全部内容, 来源链接: utcz.com/qa/414891.html

回到顶部