mirror of
https://github.com/php/doc-de.git
synced 2026-03-26 08:12:07 +01:00
fixed svn properties git-svn-id: https://svn.php.net/repository/phpdoc/de/trunk@283886 c90b9560-bf6c-de11-be94-00142212c4b1
74 lines
1.8 KiB
XML
74 lines
1.8 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: n/a Maintainer: nobody Status: ready -->
|
|
<!-- CREDITS: tom -->
|
|
<refentry xml:id="function.key" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>key</refname>
|
|
<refpurpose>
|
|
Liefert einen Schlüssel eines assoziativen Arrays
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>mixed</type><methodname>key</methodname>
|
|
<methodparam><type>array</type><parameter role="reference">array</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>key</function> liefert das Index Element der aktuellen
|
|
Position im Array.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title><function>key</function> Beispiel</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$array = array(
|
|
'Frucht1' => 'Apfel',
|
|
'Frucht2' => 'Orange',
|
|
'Frucht3' => 'Grape',
|
|
'Frucht4' => 'Apfel',
|
|
'Frucht5' => 'Apfel');
|
|
|
|
// Diese Schleife gibt alle Schlüssel des assoziativen
|
|
// Arrays aus, deren Wert "Apfel" ist.
|
|
while ($fruit_name = current($array)) {
|
|
if ($fruit_name == 'Apfel') {
|
|
echo key($array).'<br />';
|
|
}
|
|
next($array);
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
Siehe auch <function>current</function> und <function>next</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
|
|
-->
|