IniHash.hx 206 B

123456789
  1. package php;
  2. class IniHash extends Hash<String> {
  3. public function new(file : String) {
  4. super();
  5. if(file == null) throw "File can't be null";
  6. h = untyped __call__("parse_ini_file", file, false);
  7. }
  8. }