-2
ページのhtmlソースを検索してn番目の画像のhref値を返す方法などがありますか?値がscript.phpので、取り出す必要があるURL = google.com」htmlから画像を取得する
ページのhtmlソースを検索してn番目の画像のhref値を返す方法などがありますか?値がscript.phpので、取り出す必要があるURL = google.com」htmlから画像を取得する
確かにこれらを見上げて:?。
すぎる// Load page as a string
$homepage = file_get_contents('http://www.example.com/');
// Create new DOM document
$doc = new DOMDocument();
// Load HTML
@$doc->loadHTML($homepage);
// Array of imagetags
$tags = $doc->getElementsByTagName('img');
// Loop trough array and echo the url
foreach ($tags as $tag)
{
echo $tag->getAttribute('src');
}
を小さな情報 – ajreal
あなたはjavascriptやjQueryのようなクライアント側のスクリプトを使用できますか? –