svn: /phpdoc/ja/trunk/reference/apcu/functions/ apcu-key-info.xml
[email protected] (Yoshinari Takaoka)
| Newsgroups | php.doc.ja |
|---|---|
| Message-ID | <[email protected]> |
mumumu Tue, 01 Dec 2020 01:41:05 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=351807
Log:
add mission function doc / Use supported whitespace
@ref https://github.com/krakjoe/apcu/issues/342
Changed paths:
A phpdoc/ja/trunk/reference/apcu/functions/apcu-key-info.xml
Added: phpdoc/ja/trunk/reference/apcu/functions/apcu-key-info.xml
===================================================================
--- phpdoc/ja/trunk/reference/apcu/functions/apcu-key-info.xml (rev 0)
+++ phpdoc/ja/trunk/reference/apcu/functions/apcu-key-info.xml 2020-12-01 01:41:05 UTC (rev 351807)
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 351787 Maintainer: mumumu Status: ready -->
+<refentry xml:id="function.apcu-key-info" xmlns="http://docbook.org/ns/docbook">
+ <refnamediv>
+ <refname>apcu_key_info</refname>
+ <refpurpose>
+ キャッシュのキーに関する詳細な情報を取得する
+ </refpurpose>
+ </refnamediv>
+
+ <refsect1 role="description">
+ &reftitle.description;
+ <methodsynopsis>
+ <type>array</type><methodname>apcu_key_info</methodname>
+ <methodparam><type>string</type><parameter>key</parameter></methodparam>
+ </methodsynopsis>
+ <para>
+ キャッシュのキーに関する詳細な情報を取得します。
+ </para>
+ </refsect1>
+
+ <refsect1 role="parameters">
+ &reftitle.parameters;
+ <para>
+ <variablelist>
+ <varlistentry>
+ <term><parameter>key</parameter></term>
+ <listitem>
+ <para>
+ キャッシュのキー
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
+ </refsect1>
+
+ <refsect1 role="returnvalues">
+ &reftitle.returnvalues;
+ <para>
+ &null; または配列の情報を返します。
+ </para>
+ </refsect1>
+
+ <refsect1 role="examples">
+ &reftitle.examples;
+ <para>
+ <example>
+ <title>A <function>apcu_key_info</function> の例</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+apcu_add('a','b');
+var_dump(apcu_key_info('a'));
+?>
+]]>
+ </programlisting>
+ &example.outputs;
+ <screen>
+<![CDATA[
+array(7) {
+ ["hits"]=>
+ int(0)
+ ["access_time"]=>
+ int(1606701783)
+ ["mtime"]=>
+ int(1606701783)
+ ["creation_time"]=>
+ int(1606701783)
+ ["deletion_time"]=>
+ int(0)
+ ["ttl"]=>
+ int(0)
+ ["refs"]=>
+ int(0)
+}
+]]>
+ </screen>
+ </example>
+ </para>
+ </refsect1>
+
+ <refsect1 role="seealso">
+ &reftitle.seealso;
+ <para>
+ <simplelist>
+ <member><function>apcu_store</function></member>
+ <member><function>apcu_fetch</function></member>
+ <member><function>apcu_delete</function></member>
+ </simplelist>
+ </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:"~/.phpdoc/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
+-->
Property changes on: phpdoc/ja/trunk/reference/apcu/functions/apcu-key-info.xml
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property