Home > Article > Backend Development > Summary of precautions for installing memcache in PHP 5.3.5_PHP tutorial
Install php extension: memcache steps under windows
1. Download the php extension dll: http://downloads.php.net/pierre/
(If there is no dll in the above directory that matches the compiled version of your php, just go to Google and there will be many!)
The following is the version I installed (because my php is compiled with vc6):
2. Place the downloaded .dll under the extension directory of php, usually in the ext folder in the php directory.
3. Modify php.ini in the bin folder under the apache directory and add extension=php_memcache.dll.
4. Restart the apache server and check with phpinfo(). If memcache appears, it means the configuration is correct.
It is worth noting:
You must pay attention to the compiled version of php , when downloading memcache, be sure to use the same compiled version; for example, if php is compiled with vc6, then memcache should also use the vc6 compiled version.