PHP code example of iluxaorlov / base32
1. Go to this page and download the library: Download iluxaorlov/base32 library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
iluxaorlov / base32 example snippets
use Iluxaorlov\Base32;
// $encoded contains 'MZXW6==='
$encoded = Base32::encode('foo');
// $encoded contains 'MZXW6'
$encoded = Base32::encode('foo', false);
// $decoded contains 'foo'
$decoded = Base32::decode($encoded);