久久久久久AV无码免费看大片,亚洲一区精品人人爽人人躁,国产成人片无码免费爱线观看,亚洲AV成人无码精品网站,为什么晚上搞的时候要盖被子

php獲取內(nèi)容中的所有圖片

時(shí)間:2018-06-15 23:11:42 類(lèi)型:PHP
字號(hào):    

php獲取內(nèi)容中的所有圖片


function getImgs($content,$order='ALL'){  
        $pattern="/<img.*?src=[\'|\"](.*?(?:[\.gif|\.jpg]))[\'|\"].*?[\/]?>/";  
        preg_match_all($pattern,$content,$match);  
        if(isset($match[1])&&!empty($match[1])){  
            if($order==='ALL'){  
                return $match[1];  
            }  
            if(is_numeric($order)&&isset($match[1][$order])){  
                return $match[1][$order];  
            }  
        }  
        return '';  
    }
dump(getImgs($content));


如果存在的話(huà), 返回