php關閉redis的方法:先開啟對應檔案;然後輸入語句為「$this->redis->connect($host, $port,3);$this->redis = new Redis(); 」;最後儲存修改即可。
php 關閉redis連線
方法:
$this->redis->connect($host, $port,3); //3秒连接超时 $this->redis = new Redis(); $this->redis->connect($host, $port); $this->redis->auth($auth); //这样解决就可以了,简单粗暴
更多相關文章,請造訪PHP中文網!
以上是php redis如何關閉的詳細內容。更多資訊請關注PHP中文網其他相關文章!