通过 HTML DOM 解析过滤从 url 获取的图像

发布于 2024-12-29 20:44:30 字数 453 浏览 1 评论 0原文

我通过 HTML DOM 从 url 获取所有图像,就像这样

foreach($html->find('img') as $element)
{
  $gimages .= '<img src="';
  $gimages .= $element->src;
  $gimages .= '"width="100"';
  $gimages .= $k;
  $gimages .= '">';
}

我通过上面的代码获取所有图像。但是我想过滤可以在我的网页中显示的确切图像。喜欢 http://l.yimg.com/eur.yimg.com /i/any/rebel19.jpg 但有时我会得到无效的路径。我如何检查有效的图像路径。

I am fetching all images from url by HTML DOM like this

foreach($html->find('img') as $element)
{
  $gimages .= '<img src="';
  $gimages .= $element->src;
  $gimages .= '"width="100"';
  $gimages .= $k;
  $gimages .= '">';
}

I am getting all images by above code.But i want to filter exact images that i can show in my web. like
http://l.yimg.com/eur.yimg.com/i/any/rebel19.jpg
But sometimes i get invalid path. How can i check the valid image path.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ま昔日黯然 2025-01-05 20:44:30

使用它

$handle = fopen("http://l.yimg.com/eur.yimg.com/i/any/rebel19.jpg", "r");

if (!$handle) {
  // file is not present
} else {
  // file present
  // do operation u wnted
}

fclose($handle);

这将帮助您检查该文件是否存在于该位置

use this

$handle = fopen("http://l.yimg.com/eur.yimg.com/i/any/rebel19.jpg", "r");

if (!$handle) {
  // file is not present
} else {
  // file present
  // do operation u wnted
}

fclose($handle);

This will help you check whether the file is present on that lcation or not

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文