mirror of
https://github.com/php/doc-es.git
synced 2026-03-25 16:02:13 +01:00
- Nuevo documento del capitulo de seguridad (magicquotes.xml) git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@181350 c90b9560-bf6c-de11-be94-00142212c4b1
98 lines
2.8 KiB
XML
98 lines
2.8 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.4 $ -->
|
|
<!-- EN-Revision: 1.11 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. <function>array_key_exists</function> funciona
|
|
también con objetos.
|
|
</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 PHP 4.0.6.
|
|
</simpara>
|
|
</note>
|
|
<example>
|
|
<title><function>array_key_exists</function> vs
|
|
<function>isset</function></title>
|
|
<para>
|
|
<function>isset</function> no devuelve &true; para claves de
|
|
matriz que corresponden a un valor &null;, mientras que
|
|
<function>array_key_exists</function> lo hace.
|
|
|
|
</para>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$matriz_busqueda = array('primero' => null, 'segundo' => 4);
|
|
|
|
// devuelve false
|
|
isset($matriz_busqueda['primero']);
|
|
|
|
// devuelve true
|
|
array_key_exists('primero', $matriz_busqueda);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
<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
|
|
-->
|