0
我需要POST cookies.txt然後使用CURL將頁面下載到文本文件。這是我的FGC示例,但顯然FGC對Cookie不好,所以我需要CURL。通過CURL使用Cookie下載文件使用PHP
<?php
$file = file('source\1.txt');
foreach ($file as $link)
{
$link = trim($link);
$link2 = "http://site-that.com/authenticates?={$link}";
$downloaded = file_get_contents($link2);
$myFile = "parsed/$link" . ".txt";
$fh = fopen($myFile, 'a') or die('Cannot open file');
fwrite($fh, $downloaded);
}
$timestamp = time();
rename('source\1.txt', "source/done/done-{$timestamp}.txt");
echo 'Finished';
任何想法?代碼示例將不勝感激。一個簡單的例子,這樣做喜歡google.com會很好另外,如果你有另一種方式做到這一點,速度更快,請發表!
FGC對餅乾並不壞。此外,您可能希望使用搜索而不是詢問問題,但不清楚您在此處運行的問題。顯示如何執行的代碼包含file_get_contents或curl的Cookie均存在。 – hakre