redis連接php-創(chuàng)新互聯(lián)

安裝 在PHP程序中使用Redis,需要確保我們有Redis的PHP驅(qū)動程序和PHP安裝設置在機器上。可以查看PHP教程教你如何在機器上安裝PHP?,F(xiàn)在,讓我們來看看一下如何設置Redis的PHP驅(qū)動程序。 需要從github上資料庫https://github.com/nicolasff/phpredis下載phpredis。下載了它以后,將文件解壓縮到phpredis目錄。在Ubuntu上安裝這個擴展,如下圖所示。 cd phpredis sudo phpize sudo ./configure sudo make sudo make install 現(xiàn)在,復制和粘貼“modules”文件夾的內(nèi)容復制到PHP擴展目錄中,并在php.ini中添加以下幾行。 extension = redis.so 現(xiàn)在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(); ?> 當執(zhí)行程序時,會產(chǎn)生下面的結果: 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"); ?> 當執(zhí)行程序時,會產(chǎn)生下面的結果: 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); ?> 當執(zhí)行程序時,會產(chǎn)生下面的結果: 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); ?> 當執(zhí)行程序時,會產(chǎn)生下面的結果: Connection to server sucessfully Stored string in redis:: tutorial-name tutorial-list

創(chuàng)新互聯(lián)建站堅信:善待客戶,將會成為終身客戶。我們能堅持多年,是因為我們一直可值得信賴。我們從不忽悠初訪客戶,我們用心做好本職工作,不忘初心,方得始終。十余年網(wǎng)站建設經(jīng)驗創(chuàng)新互聯(lián)建站是成都老牌網(wǎng)站營銷服務商,為您提供成都網(wǎng)站制作、網(wǎng)站設計、網(wǎng)站設計、HTML5、網(wǎng)站制作、品牌網(wǎng)站建設、微信小程序服務,給眾多知名企業(yè)提供過好品質(zhì)的建站服務。

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

文章題目:redis連接php-創(chuàng)新互聯(lián)
轉(zhuǎn)載注明:http://muchs.cn/article46/djgieg.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供App開發(fā)營銷型網(wǎng)站建設、網(wǎng)站制作、微信小程序移動網(wǎng)站建設、企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化