yocto/yoclib-netstring

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

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/yocto/yoclib-netstring

v1.0.0 2023-11-18 18:00 UTC

This package is auto-updated.

Last update: 2025-09-18 21:44:18 UTC


README

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