Install php extension: memcache steps under windows
1. Download the php extension dll: http://downloads.php.net/pierre/
(If the above directory does not have a dll that matches the compiled version of your php, just Go to Google, there will be a lot of them!)
The following is the version I installed (because my php is compiled with vc6):
2. Put the downloaded .dll into the php extension directory, 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, php is using If it is compiled with vc6, then memcache should also use the vc6 compiled version.
The above has introduced a summary of the precautions for installing memcached in Memcached php 535, including the content of Memcached. I hope it will be helpful to friends who are interested in PHP tutorials.