小紫/btorrent

torrent元数据格式

1.0.7 2016-09-29 06:21 UTC

This package is not auto-updated.

Last update: 2024-09-24 08:33:44 UTC


README

用于生成torrent文件文件树的库

安装

composer require xiaozi/btorrent

示例

使用方法如下

<?php

use BTorrent\Tree;

$arr = array(
	array(
		'length' => 111,
		'path' => array('dir1', 'dir2-1', 'file1.txt'),
	),
	array(
		'length' => 222,
		'path' => array('dir1', 'dir2-2', 'file2.md'),
	),
);
 
$tree = new Tree($arr);
// var_dump($tree);
echo json_encode($tree);