使用单引号时
preg_match("/Location:(.*?)\n/", 'Location: www.\n', $matches);
var_dump($matches);
它打印:
array (size=0)
empty
使用双引号时
preg_match("/Location:(.*?)\n/", "Location: www.\n", $matches);
var_dump($matches);
它打印
array (size=2)
0 => string 'Location: www.
' (length=15)
1 => string ' www.' (length=5)
为什么??