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