如何获取帖子中的所有图片
在我当前的网站上,我使用此代码来获取第一张图像,女巫在帖子中,
$first_img = '';
$my1content = AD($row['post_content']);
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $my1content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "/img/default.png";
}
我想知道如何获取帖子中的所有图像,而不仅仅是第一个图像。 感谢您阅读此消息。
at my current website i am using this code to get the first image , witch is inside the post
$first_img = '';
$my1content = AD($row['post_content']);
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $my1content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "/img/default.png";
}
I wanted to know how to get all the images that are in the post, not only the first one.
Thank you for reading this message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$matches[1] 应该是一个数组,迭代 $matches[1] 以获取所有 img 标签。这假设 $my1content 拥有所有内容。
$matches[1] should be an array, iterate over $matches[1] to get all the img tags. This assumes that $my1content has all the content.