内容内容内容内容内容内容内容<img src="://img.baidu.com/img/logo-zhidao.gif" />内容内容内容内容内容内容
怎么把上段内容判定假如img src 地点是长途 就生存当地, 然后将生存当地的 地点 替换到上段内容的长途地点?
<?php
//获得html
$FileContent = '内容内容内容内容内容内容内容<img src="http://img.baidu.com/img/logo-zhidao.gif" />内容内容内容内容内容内容';
//note 匹配出需要下载的图片URL地点
preg_match_all('/<img \w*src="?(http:\/\/.*?(.jpg|.png|.gif))"? \w*\/?>/is', $FileContent, $imagesURLArray,PREG_SET_ORDER );
////note 轮回需要下载的地点,逐个下载 ,下载当前文件夹
$imagesURLArray = array_unique($imagesURLArray);
foreach($imagesURLArray as $imagesURL) {
file_put_contents(basename($imagesURL[1]), file_get_contents($imagesURL[1]));
$FileContent = str_replace($imagesURL[1],basename($imagesURL[1]),$FileContent);
}
//输出功效
echo $FileContent;
?>
end
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:https://www.heiqu.com/7920.html