获取指定模式PHP之间的字符串

时间:2012-11-22 06:06:29

标签: php preg-match

我有这样的字符串

$string = "<!--:en-->English Characters<!--:--><!--:zh-->日本<!--:-->";

我只对<!--:zh--><!--:-->;

之间的内容感兴趣

我该怎么做?

1 个答案:

答案 0 :(得分:4)

preg_match( '/<!--:zh-->(.*?)<!--/', $string, $matches);

print_r($matches[1]);