我希望将列中逗号分隔的值分组。例如,在以下数据中,我想分组A组中每行的第一个值,B组中的第二个值,依此类推。这些值是随机的,目的是生成XML文件。
示例数据:
1,2,3,4,5
3,5,4,6,2
期望的输出:
<group n="A">
<col n="V"><col_value>1</col_value></col>
<col n="V"><col_value>3</col_value></col>
</group>
<group n="B">
<col n="V"><col_value>2</col_value></col>
<col n="V"><col_value>5</col_value></col>
</group>
我尝试的是什么:
我正在尝试关注代码,我只是无法弄清楚如何只创建一次组,然后将值放入其中,
$a_exists = 0;
$b_exists = 0;
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($d = fgetcsv($handle)) !== FALSE) {
//create group A
if ($a_exists != 1){
$xml->startElement('group');
$xml->writeAttribute('n', 'A');
}
$xml->startElement('col');
$xml->writeAttribute('n', 'V');
$xml->writeElement('col_value', $d[0]);
$xml->endElement();
if ($a_exists != 1){
$xml->endElement();
$a_exists = 1;
}
//repeat above code to generate group B.
}
}
答案 0 :(得分:1)
我要做的是先按列分组,然后创建XML。样品:
// open csv
$fh = fopen('test.csv', 'r');
$data = array();
while(!feof($fh)) {
$row = fgetcsv($fh); // get each row
// group them first
foreach($row as $key => $val) {
$data[$key][] = $val;
}
}
$i = 'A';
$xml = new SimpleXMLElement('<groups/>');
foreach($data as $batch) {
$group = $xml->addChild('group', '');
$group->addAttribute('n', $i);
foreach($batch as $value) {
$col = $group->addChild('cols', ' ');
$col->addAttribute('n', 'V');
$col->addChild('col_value', $value);
}
$i++; // increment A -> B -> so on..
}
echo $xml->saveXML();
答案 1 :(得分:0)
我正在思考以下几点:
$file = file('test.csv');
$columnGroups = array();
$columnCount = 0;
foreach($file as $row) {
$rowArray = explode(';',$row);
foreach($rowArray as $column => $cell) {
if(!array_key_exists($column, $columnGroups)) {
$columnGroups[$column] = array();
}
$columnGroups[$column][] = $cell;
}
}
我还没有检查过代码,但这是一般的想法......在此之后你可以将所有内容同时放在一个组中