0

我有一个变量 $var = 'src="some-http-source" ' 我想在 php 中使用模式匹配将反转中的值作为变量获取请帮助

4

1 回答 1

1
$var = 'src="some-http-source"';
$matched = array();
preg_match('@src="(.+)"@', $var, $matches);
echo $matches[1]; // there it is!
于 2013-07-24T12:49:03.427 回答