当前位置:Gxlcms > PHP教程 > 得到文章中第一个图片的链接

得到文章中第一个图片的链接

时间:2021-07-01 10:21:17 帮助过:27人阅读

<无详细内容>
  1. function pickupImage($html) {
  2. preg_match_all('//U', $html, $matches, PREG_PATTERN_ORDER);
  3. if(count($matches[0]) > 0) {
  4. foreach ($matches[0] as $match)
  5. {
  6. preg_match('/src="https://img.gxlcms.com/(.+)"/U', $match, $src);
  7. return $src[1];
  8. }
  9. }
  10. else
  11. return '';
  12. }

人气教程排行