Einfach mit Php alle Bilder einer Webseite auslesen
Code
<!doctype html>
<html>
<head>
<title> Bilder auslesen </title>
<style>
main{
display: flex;
flex-wrap: wrap;
padding: 10px;
justify-content: space-around;
align-items: baseline;
}
main img{
width:23vw;
max-width:250px;
min-width:100px;
margin:10px;
border:1px solid black;
}
</style>
</head>
<body>
<main>
<?php
$server='https://basti1012.de';
$myhtml = file_get_contents("https://www.magictoolbox.com/magicslideshow/examples/");
$doc = new DOMDocument();
$doc->loadHTML($myhtml, LIBXML_NOERROR);
$tags = $doc->getElementsByTagName('img');
foreach ($tags as $tag) {
echo "<img src='".$tag->getAttribute('src')."'>";
}
?>
</main>
</body>
</html>