将数组数据更新为php中的CSV文件



我想加载csv文件数据,从csv中提取URL,检查所有URL的标题标签,并在新csv中用相应的标题标签更新URL。但是,当我尝试将数据添加到csv时,所有的url都会列出,但csv中只显示最后一个url的标题。我尝试了不同的方法来克服这个问题,但无法做到

这是我的代码:

<?php
ini_set('max_execution_time', '300'); //300 seconds = 5 minutes
ini_set('max_execution_time', '0');
include('simple_html_dom.php');
// if (isset($_POST['resurl'])) {
//     $url = $_POST['resurl'];

if (($csv_file = fopen("old.csv", "r", 'a')) !== FALSE) {
$arraydata = array();
while (($read_data = fgetcsv($csv_file, 1000, ",")) !== FALSE) {
$column_count = count($read_data);
for ($c = 0; $c < $column_count; $c++) {
array_push($arraydata, $read_data[$c]);
}
}

fclose($csv_file);
}
$title = [];
foreach ($arraydata as $ad) {
$ard = [];
$ard = $ad;
$html = file_get_html($ard);
if ($html) {
$title = $html->find('title', 0)->plaintext;
// echo '<pre>';
// print_r($title);

}
}

$ncsv = fopen("updated.csv", "a");
$head = "Url,Title";
fwrite($ncsv, "n" . $head);
foreach ($arraydata as $value) {
// $ar[]=$value;
$csvdata = "$value,$title";
fwrite($ncsv, "n" . $csvdata);
}
fclose($ncsv);

我已经更改了代码,以便您在阅读HTML页面时编写CSV文件。这样可以节省另一个循环和额外的标题数组。

我还将其更改为使用fputcsv来写入数据,因为它对转义值等进行了排序。

// Open file, using w to clear the old file down
$ncsv = fopen('updated.csv', 'w');
$head = 'Url,Title';
fwrite($ncsv, "Url,Title" . PHP_EOL . $head);
foreach ($arraydata as $ad) {
$html = file_get_html($ad);
// Fetch title, or set to blank if html is not loaded
if ($html) {
$title = $html->find('title', 0)->plaintext;
} else {
$title = '';
}
// Write record out
fputcsv($ncsv, [$value, $title]);
}
fclose($ncsv);

我终于解决了它。

这是更新后的代码:

<?php
ini_set('max_execution_time', '300'); //300 seconds = 5 minutes
ini_set('max_execution_time', '0');
include('simple_html_dom.php');
// if (isset($_POST['resurl'])) {
//     $url = $_POST['resurl'];

if (($csv_file = fopen("ntsurl.csv", "r", 'a')) !== FALSE) {
$arraydata = array();
while (($read_data = fgetcsv($csv_file, 1000, ",")) !== FALSE) {
$column_count = count($read_data);
for ($c = 0; $c < $column_count; $c++) {
array_push($arraydata, $read_data[$c]);
}
}

fclose($csv_file);
}

// print_r($arraydata);
$title=[];
$ncsv=fopen("ntsnew.csv","a");
$head="Website Url,title";
fwrite($ncsv,"n".$head);
foreach($arraydata as $ad)
{
$ard = [];
$ard = $ad;
$html = file_get_html($ard);
if ($html) {
$title = $html->find('title', 0)->plaintext;
echo '<pre>';
print_r($title);

$csvdata="$ard,$title ";
fwrite($ncsv,"n".$csvdata);

}
}
// fclose($ncsv);

相关内容

  • 没有找到相关文章

最新更新