Blame view

common/components/parsers/CustomCsvParser.php 329 Bytes
40ff24a1   Mihail   refactor CsvParse...
1
2
3
4
5
6
7
8
  <?php
  /**
   * Created by PhpStorm.
   * User: Cibermag
   * Date: 04.09.2015
   * Time: 16:07
   */
  
bedb55fe   Mihail   fixed Image class
9
  namespace common\components\parsers;
40ff24a1   Mihail   refactor CsvParse...
10
  
036717a1   Mihail   add error excepti...
11
  class CustomCsvParser extends  \yii\multiparser\CsvParser {
40ff24a1   Mihail   refactor CsvParse...
12
  
1fae1653   Mihail   fixed errors with...
13
     // public $last_line = 10;
474f35bf   Mihail   add DynamicFormHe...
14
15
      //public $hasHeaderRow = true;
     // public $keys = ['first','second', 'third', 'forth', 'fifth'];
1fae1653   Mihail   fixed errors with...
16
  
6215a30d   Mihail   add converter int...
17
18
  
  
74072a2a   Mihail   add first version...
19
  
40ff24a1   Mihail   refactor CsvParse...
20
  }