Recipe 3.13. Generating a High-Precision Time3.13.1. ProblemYou need 3.13.2. SolutionUse Timing with microtime( )
3.13.3. DiscussionSupport for the optional argument microtime( ) was added in PHP 5.0.0. Without that argument, with an argument that doesn't evaluate to true, or in an earlier version of PHP, microtime( ) returns a string that contains the microseconds part of elapsed time since the epoch, a space, and seconds since the epoch. For example, a return value of 0.41644100 1026683258 means that 1026683258.41644100 seconds have elapsed since the epoch. Time including microseconds is useful for generating unique IDs. When combined with the current process ID, it guarantees a unique ID, as long as a process doesn't generate more than one ID per microsecond. Example 3-38 uses microtime( ) (with its string return format) to generate just such an ID. Generating an ID with microtime( )
Note that the method in Example 3-38 is not as foolproof on multithreaded systems, where there is a non-zero (but very tiny) chance that two threads of the same process could call microtime( ) during the same microsecond. 3.13.4. See AlsoDocumentation on microtime( ) at http://www.php.net/microtime. The uniqid( ) function is good for generating unique IDs. |
Thursday, February 4, 2010
Recipe 3.13. Generating a High-Precision Time
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment