mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-05-28 04:02:39 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
49 lines
1 KiB
PHP
49 lines
1 KiB
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Icinga\File;
|
|
|
|
use Traversable;
|
|
|
|
class Csv
|
|
{
|
|
protected $query;
|
|
|
|
protected function __construct()
|
|
{
|
|
}
|
|
|
|
public static function fromQuery(Traversable $query)
|
|
{
|
|
$csv = new static();
|
|
$csv->query = $query;
|
|
return $csv;
|
|
}
|
|
|
|
public function dump()
|
|
{
|
|
header('Content-type: text/csv');
|
|
echo (string) $this;
|
|
}
|
|
|
|
public function __toString()
|
|
{
|
|
$first = true;
|
|
$csv = '';
|
|
foreach ($this->query as $row) {
|
|
if ($first) {
|
|
$csv .= implode(',', array_keys((array) $row)) . "\r\n";
|
|
$first = false;
|
|
}
|
|
$out = array();
|
|
foreach ($row as & $val) {
|
|
$out[] = '"' . ($val == '0' ? '0' : ($val ? str_replace('"', '""', $val) : '')) . '"';
|
|
}
|
|
$csv .= implode(',', $out) . "\r\n";
|
|
}
|
|
|
|
return $csv;
|
|
}
|
|
}
|