1,如果沒有phpize,先安裝php5-dev
sudo apt-get install php5-dev
2,取得最新的redis程式碼,並且編譯安裝
wget http://redis.googlecode.com/files/googlecode.com/files/googlecode.com/files redis-2.4.15.tar.gz
tar xzvf redis-2.4.15.tar.gz
cd redis-2.4.15
make
make install
3,安裝phpredis,獲取最新的版本進行編譯
wget -wget -no-check-certificate http://github.com/nicolasff/phpredis/tarball/master -O phpredis.tar.gz
tar phpredis.tar.gz
cd nicolasffure-phpredis-f12319
--with-php-c/local/php/bin/php-config
make
make install
vim /etc/php5/cli/php.ini
都加入下面一行
extension=redis.so
wget --no-check-certificate https://
github.com/ErikDubbelboer/phpRedisAdmin/tarball/master -O phpRedisAdmin.tar.gz
tar xzvf phpRedisAdmin.tar.gzmkdir /var/www/rediscp -fr ErikDub/varer-phpRedisAdmin-9fcb29d/1/var/www/wwww網址:http://192.168.123.136/redis/ 7,php測試程式碼<?php $redis = new Redis(); $redis->connect('127.0.0.1', 6379); $redis->set('key', 'hello world'); echo $redis->get('key'); ?>
以上就介紹了ubuntu安裝redisphp擴展,包含了github方面的內容,希望對PHP教學有興趣的朋友有幫助。