很奇怪,php 引入了phar,但是报错,说Predis\Client类找不到?
天蓬老师
天蓬老师 2017-04-11 10:16:33
0
2
345
redis) { $cfg = [ 'scheme' => 'tcp', 'host' => '127.0.0.1', 'port' => 6379 ]; $this->redis = new \Predis\Client($cfg); } } /** * Close the session * @since 5.4.0 */ public function close() { $this->redis->quit(); return true; } /** * Destroy a session * @since 5.4.0 */ public function destroy($session_id) { $this->connect(); return $this->redis->del($session_id); } /** * Cleanup old sessions * @since 5.4.0 */ public function gc($maxlifetime) { return true; } /** * Initialize session * @since 5.4.0 */ public function open($save_path, $session_id) { return true; } /** * Read session data * @since 5.4.0 */ public function read($session_id) { $this->connect(); $data = $this->redis->get($session_id); return $data; } /** * Write session data * @since 5.4.0 */ public function write($session_id, $session_data) { $this->connect(); $expire = configure('Ymf.Account.expire'); if(is_int($expire) && $expire > 0) { $result = $this->redis->setex($session_id, $expire, $session_data); $re = $result ? 'true' : 'false'; }else{ $result = $this->redis->set($session_id, $session_data); $re = $result ? 'true' : 'false'; } var_dump($result); return $re; } } session_set_save_handler(new MySession()); session_start(); $_SESSION['name'] = 43;

这是目录

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

모든 응답 (2)
迷茫

use 是使用命名空间的意思

use Predis\Client;

使用Predis空间下的 client 类

    Ty80
    use \Predis\Client;

    或者即然下面使用时用的完整命名空间,直接把use去掉

      최신 다운로드
      더>
      웹 효과
      웹사이트 소스 코드
      웹사이트 자료
      프론트엔드 템플릿
      회사 소개 부인 성명 Sitemap
      PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!