共用一段使用PHP下載CSS檔案中的圖片的程式碼
複製程式碼 程式碼如下:
//note 設定PHP逾時時間
set_time_limit(0);
//note 取得樣式檔案內容
$styleFileContent = file_get_contents('images/style.css');
//note 符合需要下載的URL位址
preg_match_all("/url((.*))/", $styleFileContent, $imagesURLArray);
//note 循環需要下載的位址,逐一下載
$imagesURLArray = array_unique($imagesURLArray[1]);
foreach ($imagesURLArray as $imagesURL) {
file_put_contents(basename($imagesURL), ges_URL), }
?>
http://www.bkjia.com/PHPjc/313579.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313579.htmlTechArticle分享一段使用PHP下載CSS檔案中的圖片的程式碼複製程式碼如下: ?php //note 設定PHP超時時間set_time_limit(0); //note 取得樣式檔內容$styleFileC...