ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCSVReader.php
Go to the documentation of this file.
1 <?php
2 
20 {
24  private $file_resource;
25  private string $line_ends;
26  private array $data = [];
27  private string $separator = ';';
28  private string $delimiter = '""';
29  private int $length = 1024;
30 
31  private function parse(): void
32  {
33  $row = 0;
34 
35  while (($line = fgetcsv($this->file_resource, $this->length, $this->separator)) !== false) {
36  $line_count = count($line);
37  for ($col = 0; $col < $line_count; $col++) {
38  $this->data[$row][$col] = $this->unquote($line[$col]);
39  }
40 
41  ++$row;
42  }
43  }
44 
45  public function setSeparator(string $a_sep): void
46  {
47  $this->separator = $a_sep;
48  }
49 
50  public function setDelimiter(string $a_del): void
51  {
52  $this->delimiter = $a_del;
53  }
54 
55  public function setLength(int $a_length): void
56  {
57  $this->length = $a_length;
58  }
59 
60  public function open(string $path_to_file): bool
61  {
62  $this->file_resource = fopen(ilUtil::stripSlashes($path_to_file), "r");
63 
64  if (!is_resource($this->file_resource)) {
65  throw new RuntimeException('sould not open stream to ' . $path_to_file);
66  }
67  return true;
68  }
69 
70  public function close(): bool
71  {
72  return fclose($this->file_resource);
73  }
74 
75  public function getCsvAsArray(): array
76  {
77  $this->parse();
78 
79  return $this->data;
80  }
81 
82  private function unquote(string $a_str): string
83  {
84  return str_replace($this->delimiter . $this->delimiter, $this->delimiter, $a_str);
85  }
86 }
setDelimiter(string $a_del)
setLength(int $a_length)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
unquote(string $a_str)
open(string $path_to_file)
setSeparator(string $a_sep)