PHP installation redis extension example under 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'); ?>
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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...

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

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

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...

redis...

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.

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...
