Windows下PHP安裝redis擴充執行個體

來源:互聯網
上載者:User
本文主要和大家分享Windows下PHP安裝redis擴充執行個體,希望能協助到大家。

一.php安裝redis擴充

1.使用phpinfo()函數查看PHP的版本資訊,這會決定擴充檔案版本

2.根據PHP版本號碼,編譯器版本號碼和CPU架構,

選擇php_redis-2.2.5-5.6-ts-vc11-x64.zip和php_igbinary-1.2.1-5.5-ts-vc11-x64.zip

下載地址:

http://windows.php.net/downloads/pecl/snaps/redis/2.2.5/

http://windows.php.net/downloads/pecl/releases/igbinary/1.2.1/

3.解壓縮後,將php_redis.dll和php_igbinary.dll拷貝至php的ext目錄下

4.修改php.ini,在該檔案中加入:

; php_redis

extension=php_igbinary.dll

extension=php_redis.dll

注意:extension=php_igbinary.dll一定要放在extension=php_redis.dll的前面,否則此擴充不會生效

5.重啟Apache後,使用phpinfo查看擴充是否成功安裝

建立一個test.php頁面

<?php    $redis = new Redis();    $redis->connect('127.0.0.1',6379);    $redis->set('test','hello redis');    echo $redis->get('test');?>

hello redis

6. 要在Windows中使用redis需要下載Windows版的redis軟體

二.php安裝memcache擴充

windows 7 64bit 環境下安裝memcached

1、下載後解壓到D:\memcached(下載地址:memcached-win64下載地址)

2、安裝到windows服務,開啟cmd命令列,進入memcached目錄,執行:memcached -d install命令,安裝服

如果在沒有安裝過的情況下,出現"failed to install service or service already installed"錯誤,則是cmd.exe需要用管理員身份運行。

3.啟動服務,執行:memcached -d start

4. 安裝PHP Memcache擴充

下載正確版本的php_memcache.dll動態連結程式庫檔案 ,並放在php5.6.16\ext目錄下 。

5.編輯php.ini,添加下面一行代碼到php.ini檔案中。

extension=php_memcache.dll

6.在phpinfo中查看memcache擴充是否安裝成功。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.