Searched defs:uniqid (Results 1 - 2 of 2) sorted by relevance
| /PHP_TRUNK/ext/standard/ |
| H A D | uniqid.c | 39 #include "uniqid.h" 41 /* {{{ proto string uniqid([string prefix [, bool more_entropy]]) 44 PHP_FUNCTION(uniqid) 52 char *uniqid; local 79 spprintf(&uniqid, 0, "%s%08x%05x%.8F", prefix, sec, usec, php_combined_lcg(TSRMLS_C) * 10); 81 spprintf(&uniqid, 0, "%s%08x%05x", prefix, sec, usec); 84 RETURN_STRING(uniqid, 0);
|
| H A D | uniqid.h | 25 PHP_FUNCTION(uniqid); variable
|
Completed in 14 milliseconds