<?php
/**
* 保存网页文件到本地(用于采集图片)
* edit: www.jb200.com
* @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<100;$i++)
{
$sUrl = "http://www.jb200.com/red/marker$i.png";
download_file($sUrl,$sPath);
}
?>