dev-master
9999999-devRFC 3548 and 4648 compliant base 32 encoder/decoder
MIT
The Requires
- php >=5.6
The Development Requires
1.0.0
1.0.0.0RFC 3548 and 4648 compliant base 32 encoder/decoder
MIT
The Requires
- php >=5.6
The Development Requires
Wallogit.com
2017 © Pedro Peláez
RFC 3548 and 4648 compliant base 32 encoder/decoder
RFC 3548 and 4648 compliant base 32 encoder/decoder., (*1)
Open a command console, enter your project directory and execute the following command to download the latest stable version of this library:, (*2)
$ composer require sendinblue/base-32 "~1"
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation., (*3)
This library provides a \SendinBlue\Base32 class which exposes a encode and decode method, that’s it!, (*4)
You can also set encode’s second argument $padding to false to avoid including any padding into the encoded string., (*5)
<?php
use SendinBlue\Base32;
echo
Base32::encode('foobar'), // MZXW6YTBOI======
Base32::encode('foobar', false), // MZXW6YTBOI
Base32::decode('MZXW6YTBOI======'), // foobar
Base32::decode('MZXW6YTBOI') // foobar
;
This library has been profiled with blackfire against, (*6)
and it outperformed them all both on time and memory., (*7)
RFC 3548 and 4648 compliant base 32 encoder/decoder
MIT
RFC 3548 and 4648 compliant base 32 encoder/decoder
MIT