>  기사  >  백엔드 개발  >  php匹配图片地址的代码一例

php匹配图片地址的代码一例

WBOY
WBOY원래의
2016-07-25 08:58:061120검색
本文介绍下,php中用正则匹配图片地址的一例代码,有需要的朋友参考下。

php正则匹配图片地址,代码如下:

<?php
//图片地址 正则匹配
//http://bbs.it-home.org
function Getpics($body)
{
global $weburl;
//$body = strtolower($body);
$img_array = array();
preg_match_all("/(src|SRC)=[\"|'| ]{0,}((http|HTTP):\/\/(.*)\.(gif|jpg|GIF|JPG|png))/isU",$body,$img_array);
$img_array = array_unique($img_array[2]);
foreach($img_array as $key=>$value)
{
$url = $value;
$fileurl = "/pic.php?s=".base64_encode($url);
$body = str_replace($url,$fileurl,$body);
}
return $body;
}
?>


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.