You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
443 B

<?php
namespace App\Services;
class CommonScrapeService {
public function scrapeBLImage()
{
$sourceUrl = "http://img11.tu11.com:8080/uploads/20201125/202011251846611";
for ($i = 39; $i < 100; $i++) {
$content = file_get_contents($sourceUrl . $i . ".jpg");
file_put_contents("/Users/shixuesen/Pictures/bl/" . pathinfo($sourceUrl . $i . ".jpg", PATHINFO_BASENAME), $content);
}
}
}