我正在尝试导入CSV,并且能够删除列,并且只导入选定的列。
所以我有一系列选定的字段和CSV文件。我可以删除行,但跳过列时遇到问题。
这是我用来显示表格,只是试图测试删除列。没什么好看的。只需要知道在哪里放置任何if语句或任何东西。提示,建议,样品都欢迎!
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
echo("<tr>\r\n");
foreach ($data as $index=>$val) {
echo("\t<td>$val</td>\r\n");
}
echo("</tr>\r\n");
} //end while
我在哪里放置任何if语句只允许其余行?我已经尝试过in_array,array_diff等 - 似乎什么都没有用?
现在我输入了这个,我应该在插入之前使用PHP删除列吗?什么是最佳做法?
感谢 JT
答案 0 :(得分:0)
尝试:
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
echo("<tr>\r\n");
foreach ($data as $index=>$val) {
if($index != BADINDEX) {
echo("\t<td>$val</td>\r\n");
}
}
echo("</tr>\r\n");
}
其中 BADINDEX 是您要删除的列号(第一列为0)。
由于您从fgetcsv获得的是行而不是列,因此只需要为打印的每一行过滤掉所需的列,这可以通过检查foreach块中的索引来完成。
答案 1 :(得分:0)
您可以设置一个包含要显示的列的数组(在我的前1和3中),并使用foreach的关键部分来了解您正在扫描的列:
<?
$handle = fopen("test.csv", "r");
$columns = array(1,3);
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
echo("<tr>\r\n");
foreach ($data as $index=>$val) {
if (in_array($index+1, $columns)) {
echo("\t<td>$val</td>\r\n");
}
}
echo("</tr>\r\n");
} //end while
?>
答案 2 :(得分:0)
这是老帖子,但我找到了另一种方式可以帮助某人:
$file = fopen($yourcsvfile, 'r');
while (($result = fgetcsv($file, 1000, ",")) !== false)
{
$temp = array();
$temp[] = $result[1]; // the column you want in your new array
$temp[] = $result[2]; // the column you want in your new array
$csv1[] = $temp;
}