コード例 #1
0
ファイル: JSON.php プロジェクト: digitalfiz/phpdoctools
 public function __construct($file, $force_array = false)
 {
     parent::__construct($file);
     $this->contents = json_decode($this->contents, $force_array);
 }
コード例 #2
0
ファイル: CSV.php プロジェクト: digitalfiz/phpdoctools
 public function __construct($file, $first_line_as_keys = false)
 {
     parent::__construct($file, true);
     $this->restructureArray($first_line_as_keys);
 }