summaryrefslogtreecommitdiff
path: root/ext/standard/uniqid.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Fixed another proto.Egon Schmid2001-10-191-2/+2
|
* Conver to use new parameter parsing API.Andrei Zmievski2001-10-191-15/+11
|
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* Z_*_P{0,2} macro work.Sterling Hughes2001-08-171-4/+4
|
* WhitespaceZeev Suraski2001-08-111-1/+1
|
* more tsrm cleanupSascha Schumann2001-08-061-1/+1
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+2
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Fine tune Andi's patchZeev Suraski2000-02-111-2/+2
|
* - Get rid of some more evil MSVC5's and switch standard/ to use PHP_WIN32Andi Gutmans2000-02-101-2/+2
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - The tree compiles againZeev Suraski1999-12-181-1/+1
|
* Use new Zend API.Sascha Schumann1999-09-241-9/+11
|
* logic fixStig Bakken1999-09-201-1/+1
|
* - uniqid() used the additional parameter even if it was not providedUwe Steinmann1999-09-071-1/+1
| | | | | this caused an segm fault. fixed it.
* ext/lcg -> ext/standard in various placesStig Bakken1999-08-311-1/+1
|
* oopsStig Bakken1999-08-311-2/+0
|
* compat fix, bug #2201Stig Bakken1999-08-311-9/+24
|
* get rid of that usleep() and add some entropy using the combined lcgSascha Schumann1999-08-211-6/+3
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-1/+1
| | | | | php3_compat.h)
* License updateZeev Suraski1999-07-161-21/+10
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-1/+1
|
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-2/+0
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+1
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+103
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.