mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-22 11:58:55 +00:00
79 lines
1.8 KiB
XML
79 lines
1.8 KiB
XML
![]() |
<?xml version="1.0" encoding="iso-8859-1"?>
|
||
|
<!-- $Revision: 1.1 $ -->
|
||
|
<refentry id="function.Memcache-close">
|
||
|
<refnamediv>
|
||
|
<refname>Memcache::close</refname>
|
||
|
<refpurpose>Close memcached server connection</refpurpose>
|
||
|
</refnamediv>
|
||
|
<refsect1>
|
||
|
<title>Description</title>
|
||
|
<methodsynopsis>
|
||
|
<type>bool</type><methodname>Memcache::close</methodname>
|
||
|
<void/>
|
||
|
</methodsynopsis>
|
||
|
<para>
|
||
|
<function>Memcache::close</function> closes connection to memcached
|
||
|
server. This function doesn't close persistent connections, which are
|
||
|
closed only during web-server shutdown/restart.
|
||
|
</para>
|
||
|
<para>
|
||
|
Also you can use <function>memcache_close</function> function.
|
||
|
See example below.
|
||
|
</para>
|
||
|
<example>
|
||
|
<title><function>Memcache::close</function> example</title>
|
||
|
<programlisting role="php">
|
||
|
<![CDATA[
|
||
|
<?php
|
||
|
|
||
|
/* procedural API */
|
||
|
$memcache_obj = memcache_connect('memcache_host', 11211);
|
||
|
/*
|
||
|
do something here ..
|
||
|
*/
|
||
|
memcache_close($memcache_obj);
|
||
|
|
||
|
/* OO API */
|
||
|
$memcache_obj = new Memcache;
|
||
|
$memcache_obj->connect('memcache_host', 11211);
|
||
|
/*
|
||
|
do something here ..
|
||
|
*/
|
||
|
$memcache_obj->close();
|
||
|
|
||
|
?>
|
||
|
]]>
|
||
|
</programlisting>
|
||
|
</example>
|
||
|
<para>
|
||
|
<function>Memcache::close</function> returns &false; if an error occured.
|
||
|
</para>
|
||
|
<para>
|
||
|
See also
|
||
|
<function>Memcache::connect</function>,
|
||
|
<function>Memcache::pconnect</function>.
|
||
|
</para>
|
||
|
</refsect1>
|
||
|
</refentry>
|
||
|
|
||
|
<!-- Keep this comment at the end of the file
|
||
|
Local variables:
|
||
|
mode: sgml
|
||
|
sgml-omittag:t
|
||
|
sgml-shorttag:t
|
||
|
sgml-minimize-attributes:nil
|
||
|
sgml-always-quote-attributes:t
|
||
|
sgml-indent-step:1
|
||
|
sgml-indent-data:t
|
||
|
indent-tabs-mode:nil
|
||
|
sgml-parent-document:nil
|
||
|
sgml-default-dtd-file:"../../../../manual.ced"
|
||
|
sgml-exposed-tags:nil
|
||
|
sgml-local-catalogs:nil
|
||
|
sgml-local-ecat-files:nil
|
||
|
End:
|
||
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||
|
vim: et tw=78 syn=sgml
|
||
|
vi: ts=1 sw=1
|
||
|
-->
|