/yoclib-netstring-php

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

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

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);