X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=docs%2Fphp-memcached%2FDocumentation;h=ef9724b0173bf17481378b7146f4cbf803b2193d;hp=32e340ac31bfa863de8c1bbedacd726abb013ac7;hb=dfec83932fd38a9086eb5a2e212889ad00f35b0e;hpb=525f157e17c0bfaf65ea90e47a88b873bd17c576 diff --git a/docs/php-memcached/Documentation b/docs/php-memcached/Documentation index 32e340ac31..ef9724b017 100644 --- a/docs/php-memcached/Documentation +++ b/docs/php-memcached/Documentation @@ -130,7 +130,7 @@ MemCachedClient::set_debug($do_debug); MemCachedClient::forget_dead_hosts(); // When a function returns FALSE, an error code is set. -// This funtion will return the error code. +// This function will return the error code. // See error_string() // returns last error code set MemCachedClient::error() @@ -166,7 +166,7 @@ EXAMPLE: require 'MemCachedClient.inc.php'; // set the servers, with the last one having an integer weight value of 3 -$options["servers"] = array("10.0.0.15:11000","10.0.0.16:11001",array("10.0.0.17:11002", 3)); +$options["servers"] = ["10.0.0.15:11000","10.0.0.16:11001",["10.0.0.17:11002", 3]]; $options["debug"] = false; $memc = new MemCachedClient($options); @@ -175,7 +175,7 @@ $memc = new MemCachedClient($options); /*********************** * STORE AN ARRAY ***********************/ -$myarr = array("one","two", 3); +$myarr = ["one","two", 3]; $memc->set("key_one", $myarr); $val = $memc->get("key_one"); print $val[0]."\n"; // prints 'one'