1. Go to this page and download the library: Download edward1108/edward-redis 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/ */
namespace app\index\controller;
use edward-redis\Redis;
class index
{
public function test()
{
Redis::set('name','edward-redis');
$res = Redis::get('name');
var_dump($res); //输出edward-redis代表成功
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.