标签: php regex
让我说我有:
$pattern = "/a/"; $string = 'Jack is a boy'; preg_match( $pattern, $string, $matches );
如何在最适合的时候执行全局搜索a。我知道在JavaScript中使用'g'字母。 PHP怎么样?