1. Go to this page and download the library: Download tuupola/base85 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/ */
tuupola / base85 example snippets
use Tuupola\Base85Proxy as Base85;
print Base85::encode("Hello world!") /* 87cURD]j7BEbo80 */
use Tuupola\Base85;
use Tuupola\Base85Proxy as Z85;
Z85::$options = [
"characters" => Base85::Z85,
"compress.spaces" => false,
"compress.zeroes" => false
];
print Z85::encode("Hello world!"); /* NM=qnZy<MXa+]NF */