mirror of
https://github.com/php/doc-ro.git
synced 2026-03-24 15:32:07 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/ro/trunk@348194 c90b9560-bf6c-de11-be94-00142212c4b1
193 lines
5.7 KiB
XML
193 lines
5.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- $Author$ -->
|
|
<!-- EN-Revision: e84c1f221cc8ad527ec2e37e9dd50e0d85499668 Maintainer: simionea Status: ready -->
|
|
<!-- CREDITS: adiju -->
|
|
|
|
<refentry xml:id="function.getdate" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>getdate</refname>
|
|
<refpurpose>Obține informația despre dată/oră</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>getdate</methodname>
|
|
<methodparam choice="opt"><type>int</type><parameter>timestamp</parameter><initializer>time()</initializer></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Întoarce un <type>array</type> asociativ conținând informația despre dată și
|
|
oră a parametrului <parameter>timestamp</parameter>, sau a datei/orei locale
|
|
în caz că parametrul <parameter>timestamp</parameter> nu este furnizat.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
|
|
&date.timestamp.description;
|
|
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Întoarce un <type>array</type> asociativ cu informații ce țin de parametrul
|
|
<parameter>timestamp</parameter>. Elementele tabloului asociativ întors sunt
|
|
următoarele:
|
|
</para>
|
|
<para>
|
|
<table>
|
|
<title>Elementele-cheie ale tabloului asociativ întors</title>
|
|
<tgroup cols="3">
|
|
<thead>
|
|
<row>
|
|
<entry>Cheie</entry>
|
|
<entry>Descriere</entry>
|
|
<entry>Exemplu de valori întoarse</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry><literal>"seconds"</literal></entry>
|
|
<entry>Reprezentarea numerică a secundelor</entry>
|
|
<entry>De la <literal>0</literal> până la <literal>59</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"minutes"</literal></entry>
|
|
<entry>Reprezentarea numerică a minutelor</entry>
|
|
<entry>De la <literal>0</literal> până la <literal>59</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"hours"</literal></entry>
|
|
<entry>Reprezentarea numerică a orelor</entry>
|
|
<entry>De la <literal>0</literal> până la <literal>23</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"mday"</literal></entry>
|
|
<entry>Reprezentarea numerică a zilei lunii</entry>
|
|
<entry>De la <literal>1</literal> până la <literal>31</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"wday"</literal></entry>
|
|
<entry>Reprezentarea numerică a zilei săptămânii</entry>
|
|
<entry>De la <literal>0</literal> (Duminică) până la <literal>6</literal> (Sâmbătă)</entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"mon"</literal></entry>
|
|
<entry>Reprezentarea numerică a lunii</entry>
|
|
<entry>De la <literal>1</literal> până la <literal>12</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"year"</literal></entry>
|
|
<entry>Reprezentarea numerică deplină a anului, 4 cifre</entry>
|
|
<entry>Exemple: <literal>1999</literal> sau <literal>2003</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"yday"</literal></entry>
|
|
<entry>Reprezentarea numerică a zilei anului</entry>
|
|
<entry>De la <literal>0</literal> până la <literal>365</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"weekday"</literal></entry>
|
|
<entry>Reprezentarea textuală deplină a zilei săptămânii în limba engleză</entry>
|
|
<entry>De la <literal>Sunday</literal> până la <literal>Saturday</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>"month"</literal></entry>
|
|
<entry>Reprezentarea textuală deplină a lunii în limba engleză, cum ar fi January sau March</entry>
|
|
<entry>De la <literal>January</literal> până la <literal>December</literal></entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>0</literal></entry>
|
|
<entry>
|
|
Secunde de la Epoca Unix, similare cu valorile întoarse de
|
|
<function>time</function> și utilizate de <function>date</function>.
|
|
</entry>
|
|
<entry>
|
|
Depinde de sistem, de obicei de la <literal>-2147483648</literal> până la
|
|
<literal>2147483647</literal>.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Exemplu <function>getdate</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$today = getdate();
|
|
print_r($today);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[seconds] => 40
|
|
[minutes] => 58
|
|
[hours] => 21
|
|
[mday] => 17
|
|
[wday] => 2
|
|
[mon] => 6
|
|
[year] => 2003
|
|
[yday] => 167
|
|
[weekday] => Tuesday
|
|
[month] => June
|
|
[0] => 1055901520
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>date</function></member>
|
|
<member><function>idate</function></member>
|
|
<member><function>localtime</function></member>
|
|
<member><function>time</function></member>
|
|
<member><function>setlocale</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
|
|
-->
|