时间:2021-07-01 10:21:17 帮助过:22人阅读
$str = ' 时间:2015-12-24 09:47来源:华尔街见闻 作者:member 点击: 145 次 ';
匹配 时间: 和来源 之间的吧。。
/d+-\d+-\d+ \d+:\d+/
/d+-\d+-\d+ \d+:\d+/
header('Content-type:text/html;charset=UTF-8');$str = ' 时间:2015-12-24 09:47来源:华尔街见闻 作者:member 点击: 145 次 ';preg_match_all('/d+-\d+-\d+ \d+:\d+/', $str, $matches);print_r($matches);
不好意思,漏了个 \
preg_match_all('/\d+-\d+-\d+ \d+:\d+/', $str, $matches); print_r($matches);Array ( [0] => Array ( [0] => 2015-12-24 09:47 ) )
不好意思,漏了个 \
preg_match_all('/\d+-\d+-\d+ \d+:\d+/', $str, $matches); print_r($matches);Array ( [0] => Array ( [0] => 2015-12-24 09:47 ) )