带有WAMP的PHP Scraper - 读/写权限?

时间:2015-06-23 10:48:31

标签: php

几个月前,我自己做了一个网络刮刀,我使用WAMP推出它运行良好,它会将结果写入CSV文件 - 我已经有了一台新PC,因此全新安装WAMP - 当我尝试运行我的刮刀时,它表示它已经成功完成 - " X-数量的数据被重新启动"像往常一样,但没有文件保存 - 我认为它可能是一些设置在php.ini与WAMP或许我不确定,我一直盯着我的屏幕尝试不同的东西,并且谷歌搜索整天的答案无济于事。任何修复将不胜感激。这是我的代码(创建新文件的部分,或写入现有文件的部分)

 if(!empty($articles)){
//Create the CSV file
$file = fopen("csv/".$phrase."_".$startPage."-".($startPage + $maxPages - 1).".csv","w"); //open file and truncate, create if it doesn't exist
foreach($articles as $item) {
    fputcsv($file, explode('::',$item));
}
fclose($file);//close the file

echo "<style type=\"text/css\">h1, h2 {font-family: sans-serif; font-weight:lighter;}</style>
    <h1>New file saved</h1>
    <h2>URL Scraped: <a href=\"". $page ."\"><em>". $page ."</em></a></h2>
    <h2>Time Taken: <strong>". ($timeFinish - $timeStart) ." seconds</strong></h2>
    <h2>Total Pages scraped: <strong>". $totalPages ."</strong></h2>
    <h2>Total contacts found: <strong>". count($articles) ."</strong></h2>";
}else{  // end if !empty $html
echo "No content found or bad URL";
}

先谢谢你的帮助:)。

0 个答案:

没有答案