我有基于 wordpress 系统的网站,我需要从每个帖子中获取图片网址。我有这个代码并且它正在工作,但是有问题,因为所有帖子都有相同的图片+最后,有新的。这是示例:
post1 - image1.png,image2.png,image3.png
post2 - image1.png,image2.png,image3.png,new1.png,new2.png
post3 - image1.png,image2.png,image3.png,new1.png,new2.png,third.png
ETC...
这是我的php代码
preg_match_all('/<img[^>]+>/i',$old_content, $imgTags);
for ($i = 0; $i < count($imgTags[0]); $i++) {
// get the source string
preg_match('/src="([^"]+)/i',$imgTags[0][$i], $imgage);
// remove opening 'src=' tag, can`t get the regex right
$origImageSrc[] = str_ireplace( 'src="', '', $imgage[0]);
}
任何想法,为什么这样做?:-)