Skip to content

Read data from ".torrent" to array and write changed data

Notifications You must be signed in to change notification settings

trijin/torrentEdit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

torrentEdit

Read data from ".torrent" to array and write changed data

use:

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)

TODO:

  • in ->save($file) need check for possible write, and successful writer

About

Read data from ".torrent" to array and write changed data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages