yocto / yoclib-netstring-php

This yocLibrary enables your project to encode and decode Netstring values in PHP.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yocLib - Netstring (PHP)

This yocLibrary enables your project to encode and decode Netstring values in PHP.

Status

CI

Installation

composer require yocto/yoclib-netstring

Use

Encoding

use YOCLIB\Netstring\Netstring;

$string = 'abc';

$netstring = Netstring::encode($string);

Decoding

use YOCLIB\Netstring\Netstring;

$netstring = '3:abc,';

$string = Netstring::decode($netstring);

About

This yocLibrary enables your project to encode and decode Netstring values in PHP.

License:GNU General Public License v3.0


Languages

Language:PHP 100.0%