arokettu/rfc1751

RFC 1751 Encoder/Decoder

1.0.0 2024-01-03 21:54 UTC

This package is auto-updated.

Last update: 2024-05-03 23:13:23 UTC


README

Packagist PHP Version License Gitlab CI Codecov

RFC 1751 encoder and decoder library for PHP.

Installation

composer require 'arokettu/rfc1751'

Simple use

<?php

\Arokettu\Rfc1751\Rfc1751::encode("\x01\x23\x45\x67\x89\xab\xcd\xef");
// = 'AIM HEW BLUM FED MITE WARM'
\Arokettu\Rfc1751\Rfc1751::decode('AIM HEW BLUM FED MITE WARM');
// = "\x01\x23\x45\x67\x89\xab\xcd\xef"

Documentation

Read full documentation here: https://sandfox.dev/php/rfc1751.html

Support

Please file issues on our main repo at GitLab: https://gitlab.com/sandfox/php-rfc1751/-/issues

Feel free to ask any questions in our room on Gitter: https://gitter.im/arokettu/community

License

The library is available as open source under the terms of the MIT License.