Yoda-BZH 41a2aed0b5 fix(csv): fix #5279 always force subject to be a string
When performing a str_replace, subject should always be a string. If
passing a non-existent column or empty column, subject may be null

This ensure str_replace is called when subject is actually a string (not
NULL)
2024-11-04 10:23:23 +01:00

48 lines
976 B
PHP

<?php
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
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 ? str_replace('"', '""', $val) : '') . '"';
}
$csv .= implode(',', $out) . "\r\n";
}
return $csv;
}
}