1
0
mirror of https://github.com/limosek/zaf-plugins.git synced 2024-11-01 08:17:19 +01:00
limosek-zaf-plugins/csv/get_fields.php

31 lines
606 B
PHP
Raw Normal View History

2017-01-27 16:05:02 +01:00
#!/usr/bin/php
<?php
2017-02-14 18:17:46 +01:00
require_once(__DIR__ . "/functions.inc.php");
2017-01-27 16:05:02 +01:00
2017-02-14 18:17:46 +01:00
$csv = getenv("csv");
$range = parse_colnum(getenv("columns"));
$rangef = array_flip($range);
$delim = getenv("delimiter");
2017-01-27 16:05:02 +01:00
2017-02-14 18:17:46 +01:00
$c = fopen($csv, "r");
$header = fgetcsv($c, false, $delim);
2017-01-27 16:05:02 +01:00
fclose($c);
json_init();
2017-02-14 18:17:46 +01:00
$last1 = end($header);
$last2 = end($range);
2017-01-30 10:31:37 +01:00
2017-02-14 18:17:46 +01:00
foreach ($header as $num => $column) {
if (!array_key_exists($num, $range))
continue;
json_row();
json_column("COLUMN", $num+1);
json_column("NAME", addslashes($column), true);
json_row_end($last1 == $column || $last2 == ($num + 1));
2017-01-27 16:05:02 +01:00
}
json_end();