我正在使用代码,它首先检查文件夹中的文件名,然后创建 url。在 url 中找到图像文件所在的特殊行。它可以正确显示图像和地址,但是如果图像太大,则需要很长时间。是否可以创建缩略图并显示它而不是图像?谢谢你!
require_once('simple_html_dom.php');
$files = scandir('files/');
foreach($files as $file) {
if($file == '.' || $file == '..') continue;
$file = basename($file, ".html");
$url = 'http://address.com/test/'.$file;
$html = file_get_html($url);
foreach($html->find('img') as $element) {
if (strpos($element,'address.com') !== false) {
$url = $element->src;
echo $url.'</br>';
echo '<IMG SRC="',$url, '" WIDTH="128" HEIGHT="96" BORDER="0" ALT="" /><br/>';
}
}
}