Home  >  Article  >  Backend Development  >  Install redis extension for PHP under Windows

Install redis extension for PHP under Windows

不言
不言Original
2018-04-14 15:29:563966browse

This article mainly introduces the installation of redis extension for PHP under Windows. It has certain reference value. Now I share it with everyone. Friends in need can refer to it

1. Use the phpinfo() function to view PHP version information, which determines the extension file version.

2. Download php_igbinary-1.2.1-5.5-ts-vc11-x64.zip, php_redis-2.2.5-5.6-ts-vc11-x64.zip (be sure to ensure the correctness of the version)

Download address:

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

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

Note: ts means thread-safe, nts means non-thread-safe, depending on the version of PHP used.
(You can determine what version of php is through Thread Safety in phpinfo, enabled: means thread-safe, disabled: means non-thread-safe)

3. After decompression , copy php_redis.dll and php_redis.pdb to the ext directory of php

4. Modify php.ini, (PS: This php.ini file is in the Apache directory) add:

; php_redis

extension=php_igbinary.dll

extension=php_redis.dll

Note: extension=php_igbinary.dll must be placed in extension=php_redis.dll in front, otherwise this extension will not take effect

5. After restarting Apache, use phpinfo to check whether the extension is successfully installed


6. Open redis After serving, you can use the following to test whether it can be called.

<?php
//连接本地的 Redis 服务
$redis = new Redis();
$redis->connect(&#39;127.0.0.1&#39;, 6379);
echo "Connection to server sucessfully";
//设置 redis 字符串数据
$redis->set("tutorial-name", "Redis tutorial");
// 获取存储的数据并输出
echo "Stored string in redis:: " . $redis->get("tutorial-name");
?>

Related recommendations:

php install mbstring extension

php install event extension

The above is the detailed content of Install redis extension for PHP under Windows. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Create watermark with PHPNext article:Create watermark with PHP