modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2024-10-02 16:09:30 +04:00
parent b3c37a43a4
commit b7e0085fd7
1 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,9 @@ abstract class AbstractReader implements IReader {
const HEADERS = null;
/** @var bool faut-il utiliser les en-têtes pour retourner des tableaux associatifs? */
const USE_HEADERS = true;
/** @var ?string nom du fichier depuis lequel lire */
const INPUT = null;
@ -37,6 +40,7 @@ abstract class AbstractReader implements IReader {
#
$this->schema = $params["schema"] ?? static::SCHEMA;
$this->headers = $params["headers"] ?? static::HEADERS;
$this->useHeaders = $params["use_headers"] ?? static::USE_HEADERS;
$this->input = $params["input"] ?? static::INPUT;
$this->trim = boolval($params["trim"] ?? static::TRIM);
$this->parseEmptyAsNull = boolval($params["empty_as_null"] ?? static::PARSE_EMPTY_AS_NULL);
@ -48,6 +52,8 @@ abstract class AbstractReader implements IReader {
protected ?array $headers;
protected bool $useHeaders;
protected $input;
protected bool $trim;
@ -61,6 +67,7 @@ abstract class AbstractReader implements IReader {
protected int $isrc = 0, $idest = 0;
protected function cook(array &$row): bool {
if (!$this->useHeaders) return true;
if ($this->isrc == 0) {
# ligne d'en-tête
$headers = $this->headers;