文章抓取
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.
 
 

14 lines
423 B

<?php
try {
while (true) {
$url = 'http://article.com:70/sendArticle';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$res = json_decode(curl_exec($curl), true);
curl_close($curl);
sleep(10);
}
}catch(\Exception $e) {
echo $e->getMessage();
}