用于搜索的php regex全局修饰符

时间:2014-10-07 21:34:22

标签: php regex

让我说我有:

$pattern = "/a/";
$string = 'Jack is a boy';
preg_match( $pattern, $string, $matches );

如何在最适合的时候执行全局搜索a。我知道在JavaScript中使用'g'字母。 PHP怎么样?

0 个答案:

没有答案