谁能解释为什么第一个示例显示的内容与第二个示例有所不同?第二个示例中的问号有什么作用?
$text = 'A simple [sentence] to [be] tested.';
preg_match('#\[(.*)\]#', $text, $match);
print $match[1];
$text = 'A simple [sentence] to [be] tested.';
preg_match('#\[(.*?)\]#', $text, $match);
print $match[1];