$str = 'this a img <img src="mypic.jpg"/> , goog jpg ha ha';
preg_match('/src="(.*jpg)"/U', $str, $match);
var_dump($match);
php 使用修饰符U来进行非贪婪模式的匹配。
$str = 'this a img <img src="mypic.jpg"/> , goog jpg ha ha';
preg_match('/src="(.*jpg)"/U', $str, $match);
var_dump($match);