開始在PHP中使用Redis前,要確保已經安裝了redis服務及PHPredis驅動,且你的機器上能正常使用PHP。
PHP安裝redis擴充套件
/usr/local/php/bin/phpize#php安裝後的路徑
./configure--with-php-config=/usr/local/php/bin/php-config
make&&makeinstall
修改php.ini檔案
vi/usr/local/php/lib/php.ini
增加如下內容:
extension_dir="/usr/local/php/lib/php/extensions/no-debug-zts-20090626"
extension=redis.so
安裝完成後重啟php-fpm或apache。檢視phpinfo資訊,就能看到redis擴充套件。
連線到redis服務
<?php
//連線本地的Redis服務
$redis=newRedis();
$redis->connect("127.0.0.1",6379);
echo"Connectiontoserversucessfully";
//檢視服務是否執行
echo"Serverisrunning:".$redis->ping();
?>
執行指令碼,輸出結果為:
Connectiontoserversucessfully
Serverisrunning:PONG
RedisPHPString(字串)例項
//設定redis字串資料
$redis->set("tutorial-name","Redistutorial");
//獲取儲存的資料並輸出
echo"Storedstringinredis::".jedis.get("tutorial-name");
Storedstringinredis::Redistutorial
RedisPHPList(列表)例項
//儲存資料到列表中
$redis->lpush("tutorial-list","Redis");
$redis->lpush("tutorial-list","Mongodb");
$redis->lpush("tutorial-list","Mysql");
$arList=$redis->lrange("tutorial-list",0,5);
echo"Storedstringinredis::"
print_r($arList);
Storedstringinredis::
Redis
Mongodb
Mysql
RedisPHPKeys例項
//獲取資料並輸出
$arList=$redis->keys("*");
echo"Storedkeysinredis::"
tutorial-name
tutorial-list
開始在PHP中使用Redis前,要確保已經安裝了redis服務及PHPredis驅動,且你的機器上能正常使用PHP。
PHP安裝redis擴充套件
/usr/local/php/bin/phpize#php安裝後的路徑
./configure--with-php-config=/usr/local/php/bin/php-config
make&&makeinstall
修改php.ini檔案
vi/usr/local/php/lib/php.ini
增加如下內容:
extension_dir="/usr/local/php/lib/php/extensions/no-debug-zts-20090626"
extension=redis.so
安裝完成後重啟php-fpm或apache。檢視phpinfo資訊,就能看到redis擴充套件。
連線到redis服務
<?php
//連線本地的Redis服務
$redis=newRedis();
$redis->connect("127.0.0.1",6379);
echo"Connectiontoserversucessfully";
//檢視服務是否執行
echo"Serverisrunning:".$redis->ping();
?>
執行指令碼,輸出結果為:
Connectiontoserversucessfully
Serverisrunning:PONG
RedisPHPString(字串)例項
<?php
//連線本地的Redis服務
$redis=newRedis();
$redis->connect("127.0.0.1",6379);
echo"Connectiontoserversucessfully";
//設定redis字串資料
$redis->set("tutorial-name","Redistutorial");
//獲取儲存的資料並輸出
echo"Storedstringinredis::".jedis.get("tutorial-name");
?>
執行指令碼,輸出結果為:
Connectiontoserversucessfully
Storedstringinredis::Redistutorial
RedisPHPList(列表)例項
<?php
//連線本地的Redis服務
$redis=newRedis();
$redis->connect("127.0.0.1",6379);
echo"Connectiontoserversucessfully";
//儲存資料到列表中
$redis->lpush("tutorial-list","Redis");
$redis->lpush("tutorial-list","Mongodb");
$redis->lpush("tutorial-list","Mysql");
//獲取儲存的資料並輸出
$arList=$redis->lrange("tutorial-list",0,5);
echo"Storedstringinredis::"
print_r($arList);
?>
執行指令碼,輸出結果為:
Connectiontoserversucessfully
Storedstringinredis::
Redis
Mongodb
Mysql
RedisPHPKeys例項
<?php
//連線本地的Redis服務
$redis=newRedis();
$redis->connect("127.0.0.1",6379);
echo"Connectiontoserversucessfully";
//獲取資料並輸出
$arList=$redis->keys("*");
echo"Storedkeysinredis::"
print_r($arList);
?>
執行指令碼,輸出結果為:
Connectiontoserversucessfully
Storedstringinredis::
tutorial-name
tutorial-list