-
-
/**
- * 保存网页文件到本地(用于采集图片)
- * edit: bbs.it-home.org
- * @param 文件路径 $sUrl
- * @param 保存本地路径 $sSavePath
- * @return boolean
- */
- function download_file($sUrl,$sSavePath='')
- {
- $sFileName = GetUrlFileExt($sUrl);
- $c = file_get_contents($sUrl);
- return file_put_contents($sSavePath.'/'.$sFileName,$c);
- }
-
- /**
- * 获取文件名
- *
- * @param 网页URL $sUrl
- * @return string
- */
- function GetUrlFileExt($sUrl)
- {
- $aAry = parse_url($sUrl);
- $sFile = basename($aAry['path']);
- $sExt = explode('.',$sFile);
- return $sExt[0].'.'.$sExt[1];
- }
-
- $sPath = "D:/marker_imgs";
- for($i=1;$i{
- $sUrl = "http://bbs.it-home.org/red/marker$i.png";
- download_file($sUrl,$sPath);
- }
- ?>
复制代码
|