php-doc-en/reference/mongo/mongodate/construct.xml
Kristina Chodorow b412e1ad93 long descriptions and more examples
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290590 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-12 16:39:09 +00:00

117 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<refentry xml:id="mongodate.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>MongoDate::__construct</refname>
<refpurpose>Creates a new date.</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<methodname>MongoDate::__construct</methodname>
<methodparam choice="opt"><type>long</type><parameter>sec</parameter></methodparam>
<methodparam choice="opt"><type>long</type><parameter>usec</parameter></methodparam>
</methodsynopsis>
<para>
Creates a new date. If no parameters are given, the current time is used.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term>
<parameter>sec</parameter>
</term>
<listitem>
<para>
Number of seconds since January 1st, 1970.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<parameter>usec</parameter>
</term>
<listitem>
<para>
Microseconds.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Returns this new date.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<example>
<title><function>MongoDate::__construct</function> example</title>
<para>This example demonstrates creating a new date with the current time and a new date with a given time.</para>
<programlisting role="php">
<![CDATA[
<?php
$d = new MongoDate();
echo "$d\n";
$d = new MongoDate(1234567890);
echo "$d\n";
$d = new MongoDate(strtotime("2009-05-01 00:00:01"));
echo "$d\n";
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
0.23660600 1235685067
0.00000000 1234567890
0.00000000 1241150401
]]>
</screen>
</example>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><methodname>MongoDate::__toString</methodname></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
-->