1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-26 00:12:06 +01:00
Files
archived-doc-es/reference/array/functions/array-key-exists.xml
Leonardo Boshell ca6f079b71 pasando a otro archivo... security/index.xml
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@137816 c90b9560-bf6c-de11-be94-00142212c4b1
2003-08-15 04:48:41 +00:00

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 &iacute;ndice o clave dada existe en la matriz</refpurpose>
</refnamediv>
<refsect1>
<title>Descripci&oacute;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&aacute;lido
como &iacute;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&oacute;n es <function>key_exists</function> en
la versi&oacute;n 4.0.6 de PHP.
</simpara>
</note>
<para>
Vea tambi&eacute;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
-->