Skip to content

2.3.0

Choose a tag to compare

@JoshyPHP JoshyPHP released this 16 Oct 18:19
· 21 commits to master since this release
2.3.0

Added s9e\Bencode\BencodeSerializable interface, similar to PHP's native JsonSerializable interface.

use s9e\Bencode\Bencode;
use s9e\Bencode\BencodeSerializable;

$bencodable = new class implements BencodeSerializable
{
	public function bencodeSerialize(): array|int|string
	{
		return 42;
	}
};

print_r(Bencode::encode($bencodable));
i42e