<?xml version="1.0" encoding="utf-8"?> <!-- $Revision$ --> <refentry xml:id="function.apcu-key-info" xmlns="http://docbook.org/ns/docbook"> <refnamediv> <refname>apcu_key_info</refname> <refpurpose> Get detailed information about the cache key </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> Get detailed information about the cache key </para> </refsect1> <refsect1 role="parameters"> &reftitle.parameters; <para> <variablelist> <varlistentry> <term><parameter>key</parameter></term> <listitem> <para> Get detailed information about the cache key </para> </listitem> </varlistentry> </variablelist> </para> </refsect1> <refsect1 role="returnvalues"> &reftitle.returnvalues; <para> null or array info </para> </refsect1> <refsect1 role="examples"> &reftitle.examples; <para> <example> <title>A <function>apcu_key_info</function> example</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 -->