第十四招 PHP之Redis資料庫
阿新 • • 發佈:2019-01-06
下載redis
到github上下載最新的redis,筆者下載了壓縮版的,下載解壓後便可使用。
下載連結:https://github.com/MicrosoftArchive/redis/releases
解壓後的目錄檔案
雙擊redis-server.exe,執行redis伺服器,執行介面如下:
雙擊執行redis-cli.exe便可使用redis,切記不要關閉redis-server。
PHPstudy的redis擴充套件檔案
檢視PHP基本資訊
使用phpinfo()檢視PHP的基本資訊,重點記錄一下下面紅方框的內容。
下載redis擴充套件
下載跟PHP資訊相同的redis擴充套件,下載連結:
https://windows.php.net/downloads/pecl/releases/redis/4.2.0/
下載介面如下:
下載跟PHP資訊相同的igbinary擴充套件,下載連結:
https://windows.php.net/downloads/pecl/releases/igbinary/2.0.5/
下載介面如下:
將下載好後的redis擴充套件和igbinary擴充套件檔案中的php_redis.dll、php_redis.pdb、php_igbinary.dll、php_igbinary.pdb拷貝到PHP的ext資料夾中。
在php.ini檔案中新增擴充套件,然後重啟伺服器
extension=php_igbinary.dll
extension=php_redis.dll
測試
檢視是否成功新增redis擴充套件
<?php
echo phpinfo();
?>
通過PHP使用redis
首先雙擊執行redis-server.exe,然後編寫程式進行測試
<?php $redis = new redis(); $redis->connect('127.0.0.1', 6379); $redis->set('name','lwqbrell'); echo $redis->get('name'); ?>
執行結果
lwqbrell