我正在使用脚本来获取帖子中的第一张图片。
这是脚本。
$first_img = '';
$my1content = $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";
}
此脚本回显完整的图像链接,例如: http: //mywebsite.com/images/thisistheimage.jpg
可以划分图像链接、图像名称和图像扩展名,所以我需要得到 3 个结果
链接,例如:http ://mywebsite.com/images/ 图片名称,例如:thisistheimage 图片扩展名,例如:.jpg
如果一切都清楚,请告诉我,谢谢阅读。