示例#1
0
 public function __construct($file, $force_array = false)
 {
     parent::__construct($file);
     $this->contents = json_decode($this->contents, $force_array);
 }
示例#2
0
 public function __construct($file, $first_line_as_keys = false)
 {
     parent::__construct($file, true);
     $this->restructureArray($first_line_as_keys);
 }