Move files around.

This commit is contained in:
Darko
2015-05-28 12:36:00 +02:00
parent a5ea73deec
commit ae0434ac11
1403 changed files with 13 additions and 18 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
//
// apt-get install php5-memcache
//
$memcache_enabled = extension_loaded("memcached");
if ($memcache_enabled)
echo "extension loaded";
else
echo "extension not loaded";
$mc = new Memcached();
$mc->connect("localhost", 11211) ;
print_r($mc->getStats());