ホームページ >バックエンド開発 >PHPチュートリアル >PHP_Redis 拡張機能
私の PHP バージョン: 5.3.10、 Apache: 2.2.21、開発環境: Windows
1. まず、redis 拡張機能をダウンロードします:
php_igbinary.dll
php_redis.dll
ダウンロード リンク:
http://pan.baidu.com/s/1c0nihUw
2.
extension=php_igbinary.dll
extension=php_redis.dll
を追加します。Apache を再起動し、テストします。
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$res = $redis->set ('hello','kitty' );
var_dump($res);
var_dump($redis->get('hello'));
echo $redis->get ('hello');
結果: ブール値 true文字列 'kitty' (length=5)kitty