1
$str = "html code here and img tag";
preg_match_all('~<img ([^>]+)>~i', $str, $matches);
$images = array();
foreach ($matches[1] as $str) {
preg_match_all('~([a-z]([a-z0-9]*)?)=("|\')(.*?)("|\')~is', $str, $pairs);
}
私はSRGをIMGから入手できません。htmlイメージタグからsrc = ""を取得する方法
参照:http://stackoverflow.com/questions/1058852/regex-to-get-src-value-from-an-img-tag – Andy