PHP code example of mattsparks / blns-php
1. Go to this page and download the library: Download mattsparks/blns-php 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/ */
mattsparks / blns-php example snippets
use MattSparks\BLNS\BLNS;
$blns = new BLNS;
foreach($blns->getList() as $string) {
// Do your magic.
}
foreach($blns->getBase64List() as $string) {
// Magic done here.
}
composer