mirror of
https://github.com/php/doc-es.git
synced 2026-03-26 00:12:06 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@137816 c90b9560-bf6c-de11-be94-00142212c4b1
72 lines
2.1 KiB
XML
72 lines
2.1 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.1 $ -->
|
|
<!-- EN-Revision: 1.7 Maintainer: lboshell Status: ready -->
|
|
<!-- splitted from ./en/functions/array.xml, last change in rev 1.119 -->
|
|
<refentry id="function.array-key-exists">
|
|
<refnamediv>
|
|
<refname>array_key_exists</refname>
|
|
<refpurpose>Comprueba si el índice o clave dada existe en la matriz</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Descripción</title>
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>array_key_exists</methodname>
|
|
<methodparam><type>mixed</type><parameter>clave</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>fuente</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>array_key_exists</function> devuelve &true; si la
|
|
<parameter>clave</parameter> dada existe en la matriz. La
|
|
<parameter>clave</parameter> puede ser cualquier valor válido
|
|
como índice de una matriz.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Ejemplo de <function>array_key_exists</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$matriz_a_buscar = array("primero" => 1, "segundo" => 4);
|
|
if (array_key_exists("primero", $matriz_a_buscar)) {
|
|
echo "El elemento 'primero' se encuentra en la matriz";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<note>
|
|
<simpara>
|
|
El nombre de esta función es <function>key_exists</function> en
|
|
la versión 4.0.6 de PHP.
|
|
</simpara>
|
|
</note>
|
|
<para>
|
|
Vea también <function>isset</function>,
|
|
<function>array_keys</function>, y
|
|
<function>in_array</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
|
|
-->
|