PHP は正規表現を使用して画像 URL を取得します
具体的な実装方法は次のとおりです。
コードは次のとおりです:
header("Content-type:text/html;charset=utf-8");
$str = '
';
$pattern = "/[img|IMG].*?src=['|"](.*?(?:[.gif|.jpg]))['|"].*?[/]?> /";
preg_match_all($pattern,$str,$match);
echo "
";
print_r($match);
?>