[PHP-DOC] cvs: phpdoc /en/functions datetime.xml From: Jesus M. Castagnetto (jmcastagnetto <email protected>)
Date: 03/19/01

jmcastagnetto Mon Mar 19 16:57:22 2001 EDT

  Modified files:
    /phpdoc/en/functions datetime.xml
  Log:
  now, really fixed example in microtime()
  
  
Index: phpdoc/en/functions/datetime.xml
diff -u phpdoc/en/functions/datetime.xml:1.34 phpdoc/en/functions/datetime.xml:1.35
--- phpdoc/en/functions/datetime.xml:1.34 Sat Mar 17 17:37:02 2001
+++ phpdoc/en/functions/datetime.xml Mon Mar 19 16:57:21 2001
@@ -636,7 +636,7 @@
       <title><function>microtime</function> example</title>
       <programlisting role="php">
 function getmicrotime(){
- list($sec, $usec) = explode(" ",microtime());
+ list($usec, $sec) = explode(" ",microtime());
     return ((float)$usec + (float)$sec);
     }