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

https://github.com/thesis-php/byte-reader-writer

An implementation for thesis/byte-order.
https://github.com/thesis-php/byte-reader-writer

Last synced: 5 months ago
JSON representation

An implementation for thesis/byte-order.

Awesome Lists containing this project

README

          

# Reader/Writer

## Installation

```shell
composer require thesis/byte-reader-writer
```

## Basic usage

```php
writeUint16(4)
->write('test');

echo $rw->read($rw->readUint16()); // test
```