Home  >  Article  >  Backend Development  >  PHP怎么抓取文章的图片?

PHP怎么抓取文章的图片?

WBOY
WBOYOriginal
2016-06-06 20:39:28899browse

PHP怎么抓取文章的图片?有没有现成的库可以使用?

回复内容:

PHP怎么抓取文章的图片?有没有现成的库可以使用?

我记得有一个库叫做 phpquery ,函数方法类似jQuery,推荐试试

一个正则可以搞定
/PHP怎么抓取文章的图片?])src\s=\s(["\']?)([^>"\']+)\2([^>])[\/]?>/
ps :多年前研发的秘密武器

表示我都是用正则抓取的
看到楼上都把正则贴出来了,我也把我珍藏多年的东西拿出来吧^_^

<code>preg_match('/]*?src[\s]*=[\s]*([\'|\"])(.*?)\\1[^>]*?\/?[\s]*>/iu',$content,$match);
</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn