1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-24 07:22:16 +01:00
Files
2025-11-03 11:50:15 +01:00

258 lines
7.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 3a8c3e77df070a046c9d5b56b68926ca2d7e5ee3 Maintainer: PhilDaiguille Status: ready -->
<!-- Reviewed: no Maintainer: Marqitos -->
<refentry xml:id="function.idate" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>idate</refname>
<refpurpose>Formatea una parte de la hora/fecha local como un entero</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type class="union"><type>int</type><type>false</type></type><methodname>idate</methodname>
<methodparam><type>string</type><parameter>format</parameter></methodparam>
<methodparam choice="opt"><type class="union"><type>int</type><type>null</type></type><parameter>timestamp</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
<function>idate</function> devuelve un número formateado con el
formato <parameter>format</parameter> y que representa el timestamp
<parameter>timestamp</parameter> o la hora actual si
<parameter>timestamp</parameter> es omitido.
En otras palabras, el parámetro <parameter>timestamp</parameter> es opcional
y el valor por omisión es el valor devuelto por la función <function>time</function>.
</para>
<para>
A diferencia de la función <function>date</function>, <function>idate</function>
acepta solo un carácter como parámetro <parameter>format</parameter>.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>format</parameter></term>
<listitem>
<para>
<table>
<title>Los siguientes caracteres son reconocidos en el string
del parámetro <parameter>format</parameter></title>
<tgroup cols="2">
<thead>
<row>
<entry>Caracteres de <parameter>format</parameter></entry>
<entry>Descripción</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>B</literal></entry>
<entry>Tiempo Internet Swatch Beat</entry>
</row>
<row>
<entry><literal>d</literal></entry>
<entry>El día del mes</entry>
</row>
<row>
<entry><literal>h</literal></entry>
<entry>Hora (formato 12 horas)</entry>
</row>
<row>
<entry><literal>H</literal></entry>
<entry>Hora (formato 24 horas)</entry>
</row>
<row>
<entry><literal>i</literal></entry>
<entry>Minutos</entry>
</row>
<row>
<entry><literal>I</literal>(i, en mayúscula)</entry>
<entry>Devuelve <literal>1</literal> si el horario de verano está activado,
<literal>0</literal> en caso contrario</entry>
</row>
<row>
<entry><literal>L</literal>(l, en mayúscula)</entry>
<entry>Devuelve <literal>1</literal> para un año bisiesto,
<literal>0</literal> en caso contrario</entry>
</row>
<row>
<entry><literal>m</literal></entry>
<entry>Número del mes</entry>
</row>
<row>
<entry><literal>N</literal></entry>
<entry>
Día de la semana ISO-8601 (<literal>1</literal> para
el lunes a <literal>7</literal> para el domingo)
</entry>
</row>
<row>
<entry><literal>o</literal></entry>
<entry>Año ISO-8601 (4 dígitos)</entry>
</row>
<row>
<entry><literal>s</literal></entry>
<entry>Segundos</entry>
</row>
<row>
<entry><literal>t</literal></entry>
<entry>Día del mes actual</entry>
</row>
<row>
<entry><literal>U</literal></entry>
<entry>Segundos desde la época Unix - 1 de Enero de 1970 00:00:00 UTC -
esto es lo mismo que la función <function>time</function></entry>
</row>
<row>
<entry><literal>w</literal></entry>
<entry>Día de la semana (<literal>0</literal> para Domingo)</entry>
</row>
<row>
<entry><literal>W</literal></entry>
<entry>El número de semana del año; según ISO-8601, las semanas comienzan
el Lunes</entry>
</row>
<row>
<entry><literal>y</literal></entry>
<entry>Año en 1 o 2 dígitos, ver la nota más abajo</entry>
</row>
<row>
<entry><literal>Y</literal></entry>
<entry>Año en 4 dígitos</entry>
</row>
<row>
<entry><literal>z</literal></entry>
<entry>Día del año</entry>
</row>
<row>
<entry><literal>Z</literal></entry>
<entry>Desplazamiento horario, en segundos</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</listitem>
</varlistentry>
&date.timestamp.description;
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Devuelve un <type>int</type> en caso de éxito, &return.falseforfailure;.
</para>
<para>
Dado que <function>idate</function> siempre devuelve un &integer;
y no puede comenzar con <literal>0</literal>,
<function>idate</function> puede devolver menos dígitos de los
que se podrían esperar. Ver el ejemplo a continuación.
</para>
</refsect1>
<refsect1 role="errors">
&reftitle.errors;
&date.timezone.errors.description;
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.2.0</entry>
<entry>
Añade los caracteres de formato <literal>N</literal> (día de la semana ISO-8601)
y <literal>o</literal> (año ISO-8601).
</entry>
</row>
<row>
<entry>8.0.0</entry>
<entry>
<parameter>timestamp</parameter> ahora es nullable.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Ejemplo con <function>idate</function></title>
<programlisting role="php">
<![CDATA[
<?php
$timestamp = strtotime('1st January 2004'); // 1072915200
// esto muestra el año en dos dígitos
// sin embargo, dado que este dígito comenzará con "0",
// solo "4" será mostrado
echo idate('y', $timestamp) . "\n";
$timestamp = strtotime('1st January 2024'); // 1704067200
echo idate('y', $timestamp);
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
4
24
]]>
</screen>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><methodname>DateTimeInterface::format</methodname></member>
<member><function>date</function></member>
<member><function>getdate</function></member>
<member><function>time</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
-->