mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Documentation for flags parameter (new in version 2.2.1)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246005 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2897133cc6
commit
587c980551
1 changed files with 15 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<refentry xml:id="function.Memcache-get" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>Memcache::get</refname>
|
||||
|
@ -11,10 +11,12 @@
|
|||
<methodsynopsis>
|
||||
<type>string</type><methodname>Memcache::get</methodname>
|
||||
<methodparam><type>string</type><parameter>key</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>int</type><parameter role="reference">flags</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<methodsynopsis>
|
||||
<type>array</type><methodname>Memcache::get</methodname>
|
||||
<methodparam><type>array</type><parameter>keys</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>array</type><parameter role="reference">flags</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
|
||||
<para>
|
||||
|
@ -38,6 +40,18 @@
|
|||
<term><parameter>key</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The key or array of keys to fetch.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>flags</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
If present, flags fetched along with the values will be written to this parameter. These
|
||||
flags are the same as the ones given to for example <function>Memcache::set</function>.
|
||||
The lowest byte of the int is reserved for pecl/memcache internal usage (e.g. to indicate
|
||||
compression and serialization status).
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
|
Loading…
Reference in a new issue