2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2007-06-20 22:25:43 +00:00
|
|
|
<!-- $Revision: 1.15 $ -->
|
|
|
|
<refentry xml:id="function.microtime" xmlns="http://docbook.org/ns/docbook">
|
2005-04-24 23:50:58 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>microtime</refname>
|
|
|
|
<refpurpose>Return current Unix timestamp with microseconds</refpurpose>
|
|
|
|
</refnamediv>
|
2006-07-11 07:05:04 +00:00
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2005-04-24 23:50:58 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>mixed</type><methodname>microtime</methodname>
|
|
|
|
<methodparam choice="opt"><type>bool</type><parameter>get_as_float</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
<function>microtime</function> returns the current Unix timestamp with
|
|
|
|
microseconds. This function is only available on operating systems that
|
|
|
|
support the gettimeofday() system call.
|
|
|
|
</para>
|
2006-07-11 07:05:04 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
2005-04-24 23:50:58 +00:00
|
|
|
<para>
|
2006-07-11 07:05:04 +00:00
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>get_as_float</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
When called without the optional argument, this function returns the string
|
|
|
|
"msec sec" where sec is the current time measured in the number of
|
|
|
|
seconds since the Unix Epoch (0:00:00 January 1, 1970 GMT), and
|
|
|
|
msec is the microseconds part.
|
|
|
|
Both portions of the string are returned in units of seconds.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
If the optional <parameter>get_as_float</parameter> is set to
|
|
|
|
&true; then a <type>float</type> (in seconds) is returned.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
2005-04-24 23:50:58 +00:00
|
|
|
</para>
|
2006-07-11 07:05:04 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="changelog">
|
|
|
|
&reftitle.changelog;
|
2005-04-24 23:50:58 +00:00
|
|
|
<para>
|
2006-07-11 07:05:04 +00:00
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>&Version;</entry>
|
|
|
|
<entry>&Description;</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>5.0.0</entry>
|
|
|
|
<entry>
|
|
|
|
The <parameter>get_as_float</parameter> parameter was added.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
2005-04-24 23:50:58 +00:00
|
|
|
</para>
|
2006-07-11 07:05:04 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
2005-04-24 23:50:58 +00:00
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title>Timing script execution with <function>microtime</function></title>
|
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
2003-03-21 15:46:14 +00:00
|
|
|
<?php
|
2004-07-30 14:50:51 +00:00
|
|
|
/**
|
2004-08-26 05:40:30 +00:00
|
|
|
* Simple function to replicate PHP 5 behaviour
|
2004-07-30 14:50:51 +00:00
|
|
|
*/
|
2005-04-24 23:50:58 +00:00
|
|
|
function microtime_float()
|
|
|
|
{
|
|
|
|
list($usec, $sec) = explode(" ", microtime());
|
|
|
|
return ((float)$usec + (float)$sec);
|
|
|
|
}
|
2002-04-15 00:12:54 +00:00
|
|
|
|
2004-07-30 14:50:51 +00:00
|
|
|
$time_start = microtime_float();
|
|
|
|
|
|
|
|
// Sleep for a while
|
|
|
|
usleep(100);
|
2002-04-15 00:12:54 +00:00
|
|
|
|
2004-07-30 14:50:51 +00:00
|
|
|
$time_end = microtime_float();
|
2002-04-15 00:12:54 +00:00
|
|
|
$time = $time_end - $time_start;
|
|
|
|
|
2003-12-18 17:46:56 +00:00
|
|
|
echo "Did nothing in $time seconds\n";
|
2004-07-30 14:50:51 +00:00
|
|
|
?>
|
|
|
|
]]>
|
2005-04-24 23:50:58 +00:00
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
<example>
|
|
|
|
<title>Timing script execution in PHP 5</title>
|
|
|
|
<programlisting role="php">
|
2004-07-30 14:50:51 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
$time_start = microtime(true);
|
2003-12-18 17:46:56 +00:00
|
|
|
|
2004-07-30 14:50:51 +00:00
|
|
|
// Sleep for a while
|
|
|
|
usleep(100);
|
2003-12-18 17:46:56 +00:00
|
|
|
|
2004-07-30 14:50:51 +00:00
|
|
|
$time_end = microtime(true);
|
2003-12-18 17:46:56 +00:00
|
|
|
$time = $time_end - $time_start;
|
|
|
|
|
|
|
|
echo "Did nothing in $time seconds\n";
|
2003-03-21 15:46:14 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2005-04-24 23:50:58 +00:00
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2006-07-11 07:05:04 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
2005-04-24 23:50:58 +00:00
|
|
|
<para>
|
2006-07-11 07:05:04 +00:00
|
|
|
<simplelist>
|
|
|
|
<member><function>time</function></member>
|
|
|
|
</simplelist>
|
2005-04-24 23:50:58 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
<!-- 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
|
2004-08-10 16:30:22 +00:00
|
|
|
-->
|