Read data from ".torrent" to array and write changed data
init:
$torrent = new torrent($raw_torrent_data);
or
$torrent = new torrent();
$torrent->load($raw_torrent_data);
view
$torrent->array; // all data in array;
$torrent->data; // original raw_torrent_data
edit and save
$torrent->array; // do any changes
$torrent->save(); // generate and return raw data from $this->array
$torrent->save($filename); // generate raw data from $this->array and save to $filename (return true)
- in
->save($file)
need check for possible write, and successful writer