查找日期和颜色(PHP)

时间:2014-10-15 16:11:36

标签: php date

我有一个页面,有一个变量($ content)显示的孔文本。

在此变量 $ content 中,有几个日期。

我想大胆所有日期 - 所以:

$ content =“27.09.2014 - abc- 03.04.2011 - def11.11.2011 92849ajsdasd”

应检测 27.09.2014; 03.04.2011; 11.11.2011

和$ content应为=“ 27.09.2014 - abc- 03.04.2011 - def 11.11.2011 92849ajsdasd”

用PHP可以实现这个吗?

谢谢, Pohyal Stori

1 个答案:

答案 0 :(得分:0)

您可以使用正则表达式搜索和替换:

$content = "27.09.2014 - abc- 03.04.2011 - def11.11.2011 92849ajsdasd";
$content = preg_replace("/\\d{2}\\.\\d{2}\\.\\d{4}/", "<b>\\0</b>", $content);