1. Go to this page and download the library: Download sugatasei/bredala-data 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/ */
sugatasei / bredala-data example snippets
use Bredala\Data\MicroCache;
if (null === ($foo = MicroCache::get('foo'))) {
$foo = 'bar';
MicroCache::set('foo', $foo);
}
use Bredala\Data\MicroCache;
if (null === ($nullable = MicroCache::get('nullable')) && !MicroCache::has('nullable')) {
$nullable = null;
MicroCache::set('nullable', $nullable);
}