PHP code example of infobiotech / php-json-cache

1. Go to this page and download the library: Download infobiotech/php-json-cache 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/ */

    

infobiotech / php-json-cache example snippets




ystemAdapter = new League\Flysystem\Adapter\Local('.');

$jsonCache         = new Infobiotech\JsonCache\Psr16\Driver($flysystemAdapter, uniqid());

$jsonCache->set('key', 'value'); // return TRUE

$jsonCache->get('key'); // return 'value'

$jsonCache = new Infobiotech\JsonCache(/* your adapter and your namespace */);

$jsonCache = new Infobiotech\JsonCache\Psr16\Driver(/* your adapter and your namespace */);