Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tacoberu/php-naiacode

De/Serialization text with meta from/to text string.
https://github.com/tacoberu/php-naiacode

Last synced: about 2 months ago
JSON representation

De/Serialization text with meta from/to text string.

Awesome Lists containing this project

README

        

NaiaCode
========

De/Serialization text with meta from/to human readable text string.

$str =
"Any-Header: with value
Meta: {"vendor":"zim","ver":"0.4"}
Content-Type: text/x-zim-wiki

And Lorem ipsum doler ist.";

(new Decoder())->decode($str) == [
"And Lorem ipsum doler ist.",
[
'any-header' => "with value",
'meta' => (object) [
'vendor' => 'zim',
'ver' => '0.4',
],
'content-type' => "text/x-zim-wiki",
]
]

And encoding similarly.