亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

redis連接php

發布時間:2020-07-20 11:39:36 來源:網絡 閱讀:511 作者:liangey 欄目:web開發
安裝
在PHP程序中使用Redis,需要確保我們有Redis的PHP驅動程序和PHP安裝設置在機器上。可以查看PHP教程教你如何在機器上安裝PHP。現在,讓我們來看看一下如何設置Redis的PHP驅動程序。
需要從github上資料庫https://github.com/nicolasff/phpredis下載phpredis。下載了它以后,將文件解壓縮到phpredis目錄。在Ubuntu上安裝這個擴展,如下圖所示。
cd phpredis
sudo phpize
sudo ./configure
sudo make
sudo make install
現在,復制和粘貼“modules”文件夾的內容復制到PHP擴展目錄中,并在php.ini中添加以下幾行。
extension = redis.so
現在Redis和PHP安裝完成。
連接到Redis服務器
<?php
   //Connecting to Redis server on localhost
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   //check whether server is running or not
   echo "Server is running: "+ $redis->ping();
?>
當執行程序時,會產生下面的結果:
Connection to server sucessfully
Server is running: PONG
Redis的PHP字符串實例
<?php
   //Connecting to Redis server on localhost
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   //set the data in redis string
   $redis->set("tutorial-name", "Redis tutorial");
   // Get the stored data and print it
   echo "Stored string in redis:: " + jedis.get("tutorial-name");
?>
當執行程序時,會產生下面的結果:
Connection to server sucessfully
Stored string in redis:: Redis tutorial
Redis的PHP列表示例
<?php
   //Connecting to Redis server on localhost
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   //store data in redis list
   $redis->lpush("tutorial-list", "Redis");
   $redis->lpush("tutorial-list", "Mongodb");
   $redis->lpush("tutorial-list", "Mysql");
   // Get the stored data and print it
   $arList = $redis->lrange("tutorial-list", 0 ,5);
   echo "Stored string in redis:: "
   print_r($arList);
?>
當執行程序時,會產生下面的結果:
Connection to server sucessfully
Stored string in redis::
Redis
Mongodb
Mysql
Redis的PHP鍵例
<?php
   //Connecting to Redis server on localhost
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   // Get the stored keys and print it
   $arList = $redis->keys("*");
   echo "Stored keys in redis:: "
   print_r($arList);
?>
當執行程序時,會產生下面的結果:
Connection to server sucessfully
Stored string in redis::
tutorial-name
tutorial-list


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大竹县| 陇川县| 盐亭县| 滦南县| 安乡县| 敦煌市| 乐都县| 玉屏| 安宁市| 张家界市| 绥棱县| 喀什市| 泸州市| 桂林市| 长葛市| 清河县| 荥经县| 通辽市| 清水县| 万荣县| 宾阳县| 金昌市| 常山县| 宝兴县| 山阳县| 西青区| 彰武县| 云霄县| 栖霞市| 中江县| 济源市| 抚州市| 鄂州市| 彭泽县| 丰镇市| 和林格尔县| 闸北区| 贵州省| 日照市| 保定市| 昌都县|