得到文章中第一个图片的链接
时间:2021-07-01 10:21:17
帮助过:27人阅读
<无详细内容>
- function pickupImage($html) {
- preg_match_all('//U', $html, $matches, PREG_PATTERN_ORDER);
- if(count($matches[0]) > 0) {
- foreach ($matches[0] as $match)
- {
- preg_match('/src="https://img.gxlcms.com/(.+)"/U', $match, $src);
- return $src[1];
- }
- }
- else
- return '';
- }
|