Home Backend Development PHP Tutorial PHP installation redis extension example under Windows

PHP installation redis extension example under Windows

Mar 03, 2018 pm 01:12 PM
php redis windows

This article mainly shares with you examples of redis extension installation for PHP under Windows, hoping to help everyone.

1.php installation redis extension

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

2. Based on the PHP version number, compiler version number and CPU architecture,

select php_redis-2.2.5 -5.6-ts-vc11-x64.zip and php_igbinary-1.2.1-5.5-ts-vc11-x64.zip

Download address:

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

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

3. After decompressing, copy php_redis.dll and php_igbinary.dll to the ext directory of php

4. Modify php.ini and add:

; php_redis

extension=php_igbinary.dll

extension=php_redis.dll

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

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

Create a new test.php page

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

hello redis

6. To use redis in Windows, you need to download the Windows version of redis software

二.php Install memcache extension

Install memcached in windows 7 64bit environment

1. After downloading, extract it to D:\memcached (download address: memcached-win64 download address)

2. Install to windows service, open cmd command line, enter the memcached directory, execute: memcached -d install command , Installing the service

If the "failed to install service or service already installed" error occurs when it has not been installed before, it means that cmd.exe needs to be run as an administrator.

3. Start the service and execute: memcached -d start

4. Install the PHP Memcache extension

Download the correct version of php_memcache. dll dynamic link library file and place it in the php5.6.16\ext directory.

5. Edit php.ini and add the following line of code to the php.ini file.

extension=php_memcache.dll

6. Check in phpinfo whether the memcache extension is installed successfully.

Related recommendations:

How to install Redis extension for PHP under win

PHP Redis extension from installation to use

How to add redis extension to php under ubuntu system

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

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the problem of third-party interface returning 403 in Node.js environment? How to solve the problem of third-party interface returning 403 in Node.js environment? Mar 31, 2025 pm 11:27 PM

Solve the problem of third-party interface returning 403 in Node.js environment. When we use Node.js to call third-party interfaces, we sometimes encounter an error of 403 from the interface returning 403...

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

Compilation and installation of Redis on Apple M1 chip Mac failed. How to troubleshoot PHP7.3 compilation errors? Compilation and installation of Redis on Apple M1 chip Mac failed. How to troubleshoot PHP7.3 compilation errors? Mar 31, 2025 pm 11:39 PM

Problems and solutions encountered when compiling and installing Redis on Apple M1 chip Mac, many users may...

How to trigger the background asynchronous batch sending of SMS messages in the foreground without affecting the user experience? How to trigger the background asynchronous batch sending of SMS messages in the foreground without affecting the user experience? Mar 31, 2025 pm 11:45 PM

How to implement the function of triggering the background asynchronous batch sending of SMS messages in the foreground? In some application scenarios, users need to trigger batch short in the background through foreground operations...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How to configure and use Redis cache in CodeIgniter4? How to configure and use Redis cache in CodeIgniter4? Apr 01, 2025 am 07:51 AM

Codeigniter4...

Laravel Redis connection sharing: Why does the select method affect other connections? Laravel Redis connection sharing: Why does the select method affect other connections? Apr 01, 2025 am 07:45 AM

The impact of sharing of Redis connections in Laravel framework and select methods When using Laravel framework and Redis, developers may encounter a problem: through configuration...

See all articles