例如 $input = '$a = \'abc\'.\'def\'."ghi"';
preg_match_all('我所要的东西',$input,$match);
print_r($match);
Array{
[0]=>'abc',
[1]=>'def',
[2]=>'ghi'
}
...收起