PHP code example of yocto / yoclib-multibase

1. Go to this page and download the library: Download yocto/yoclib-multibase 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/ */

    

yocto / yoclib-multibase example snippets


use YOCLIB\Multiformats\Multibase\Multibase;

$text = 'Hello world!';

$encodedString = Multibase::encode(Multibase::BASE16UPPER,$text);

use YOCLIB\Multiformats\Multibase\Multibase;

$encodedString = 'F48656C6C6F20776F726C6421';

$text = Multibase::decode($encodedString);