PHP code example of cache / illuminate-adapter
1. Go to this page and download the library: Download cache/illuminate-adapter 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/ */
cache / illuminate-adapter example snippets
use Cache\Adapter\Illuminate\IlluminateCachePool;
use Illuminate\Cache\ArrayStore;
$store = new ArrayStore();
$pool = new IlluminateCachePool($store);