PHP code example of faveo-helpdesk / laravel-cache
1. Go to this page and download the library: Download faveo-helpdesk/laravel-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/ */
use CacheDriver\HandleCacheController;
$cache = new HandleCacheController();
// Gets a default driver. If constant was not there, 'database' value will be picked. Not only DEFAULT constant but also serach all kind of cache Constant value
$cache::value('DEFAULT', 'database');
use CacheDriver\HandleCacheController;
$cache = new HandleCacheController();
// Passes a driver like file, database, array, redis, memcached and dynamodb
$cache::all('file');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.