Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yocto/yoclib-netstring-php

This yocLibrary enables your project to encode and decode Netstring values in PHP.
https://github.com/yocto/yoclib-netstring-php

composer netstring php qmqp qmtp yoclib yocto

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# yocLib - Netstring (PHP)

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

## Status

[![CI](https://github.com/yocto/yoclib-netstring-php/actions/workflows/ci.yml/badge.svg)](https://github.com/yocto/yoclib-netstring-php/actions/workflows/ci.yml)

## Installation

`composer require yocto/yoclib-netstring`

## Use

### Encoding

```php
use YOCLIB\Netstring\Netstring;

$string = 'abc';

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

### Decoding

```php
use YOCLIB\Netstring\Netstring;

$netstring = '3:abc,';

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