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.
- Host: GitHub
- URL: https://github.com/thesis-php/byte-reader-writer
- Owner: thesis-php
- License: mit
- Created: 2025-01-17T03:34:01.000Z (over 1 year ago)
- Default Branch: 0.1.x
- Last Pushed: 2025-01-23T13:01:31.000Z (over 1 year ago)
- Last Synced: 2025-09-01T05:08:57.504Z (9 months ago)
- Language: PHP
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```