@@ -41,10 +41,10 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $this->rows = array(); |
| 44 | - $rowsaux = preg_split("/" . $this->rowsep . "/", $linha); |
|
| 44 | + $rowsaux = preg_split("/".$this->rowsep."/", $linha); |
|
| 45 | 45 | sort($rowsaux); |
| 46 | 46 | foreach ($rowsaux as $value) { |
| 47 | - $colsaux = preg_split("/" . $this->colsep . "/", $value); |
|
| 47 | + $colsaux = preg_split("/".$this->colsep."/", $value); |
|
| 48 | 48 | if (count($colsaux) == count($fieldnames)) { |
| 49 | 49 | $this->rows[] = $value; |
| 50 | 50 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | public function moveNext() |
| 79 | 79 | { |
| 80 | - $cols = preg_split("/" . $this->colsep . "/", $this->rows[$this->current]); |
|
| 80 | + $cols = preg_split("/".$this->colsep."/", $this->rows[$this->current]); |
|
| 81 | 81 | $this->current++; |
| 82 | 82 | |
| 83 | 83 | $sr = new SingleRow(); |