通过 HTML DOM 解析过滤从 url 获取的图像
我通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用它
这将帮助您检查该文件是否存在于该位置
use this
This will help you check whether the file is present on that lcation or not