dsmithhayes/bencode
Composer 安装命令:
composer require dsmithhayes/bencode
包简介
A simple bencoding library for PHP.
README 文档
README
This is a library used for encoding and decoding bencoded streams. Bencoding
is primarily found in the makeup of .torrent files.
Bencoding Basics
Pronounced bee-encoding, this encoding focuses on binary encoding with four basic element data structures.
IntegerByteListDictionary
The last two elements (List, Dictionary) are just collections of the
first two elements.
Integer
The Integer element is a positive or negative integer that is always
prefixed with an i, and suffixed with an e.
i45e
i-1e
Usage
<?php
use Bencode\Integer;
$int = new Integer(45);
echo $int->encode(); // i45e
$int->decode(i-445e);
echo $int->write(); // -445
Byte
Bytes are encoded with their size (in bytes), a : and then the sequence
of bytes.
5:hello
6:123456
Note that the second example will encode the character codes and not the binary value of the integers.
Usage
<?php
use Bencode\Byte;
$byte = new Byte('hello');
echo $byte->encode(); // 5:hello
$byte->decode('5:world');
echo $byte->write(); // world
List
A List is just that, a list of Byte and Integer elements. It has a siilar
encoding as the Integer. The List is prefixed with l and suffixed with
e. Within are encoded Bytes and integers.
li45e5:hello5:worldi-45e
Usage
The class is named BList because List is a reserved keyword in PHP.
<?php
use Bencode\Collection\BList
$list = new BList([45, 'hello', 'world', -45]);
echo $list->encode(); // li45e5:hello5:worldi-45e
$list->decode('li34e4:davee');
print_r($list->write()); // [34, 'dave']
Dictionary
Dictionaries are key-value lists. The first element in the list is the key, and
the second is the value. The Dictionary is prefixed with a d and suffixed with
an e.
d3:key5:valuee
You can also use elements as values in the list.
d3:keyli3ei5eee
d3:keyd3:key5:valueee
Usage
<?php
use Bencode\Collection\Dictionary;
$dictionary = new Dictionary(['key' => 'value']);
echo $dictionary->encode(); // d3:key5:valuee
$dictionary->decode('d3:new6:valuese');
print_r($dictionary->write()); // ['new' => 'values']
Dictionaries are what your .torrent files are encoded with. You can easily
build objects to manipulate data of a torrent file.
<?php
use Bencode\Collection\Dictionary;
$dictionary = new Dictionary();
$torrent = file_get_contents('example.torrent');
$ditionary->decode($torrent);
$buffer = $dictionary->write();
echo $buffer['comment'];
dsmithhayes/bencode 适用场景与选型建议
dsmithhayes/bencode 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 49 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 09 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「bencode」 「torrent」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 dsmithhayes/bencode 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dsmithhayes/bencode 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 dsmithhayes/bencode 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Library for decoding and encoding BitTorrent BEncoded data
Extract media information from torrent-like filename
Composer version of torrent-rw https://github.com/adriengibrat/torrent-rw
A Bencode serializer and deserializer in pure PHP
An easy way to use bencoding in Laravel.
PHP Transmission client
统计信息
- 总下载量: 49
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD
- 更新时间: 2015-09-07