summaryrefslogtreecommitdiff
path: root/ext/standard/math.c
Commit message (Collapse)AuthorAgeFilesLines
...
* fix for bug #5672Hartmut Holzgraefe2000-07-301-5/+4
|
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-1/+1
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* Make it possible to specify an empty string as a thousands-seperatorRasmus Lerdorf2000-07-141-3/+5
| | | | | | | in number_format() @ Make it possible to specify an empty string as a thousands-seperator @ in number_format()
* Corrected a mispelled word.Egon Schmid2000-07-091-1/+1
|
* Rename phpmath.h to php_math.h.Sascha Schumann2000-06-131-1/+1
|
* (php_math_number_format) Simplifying the logic also fixed bugs #4954Andrei Zmievski2000-06-131-10/+3
| | | | | and #4998.
* Fixed a proto.Egon Schmid2000-06-121-1/+1
|
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-25/+25
|
* Small optimizationZeev Suraski2000-06-021-3/+6
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* (PHP round) Fix proto.Andrei Zmievski2000-05-181-1/+1
|
* Second parameter is optional.Egon Schmid2000-05-171-1/+1
|
* Let's cast it.Andrei Zmievski2000-05-171-1/+2
|
* @- Improved round() to allow specification of rounding precision.Andrei Zmievski2000-05-171-27/+41
| | | | | @ (Andrei, Todd Kirby <kirbyt@yahoo.com>)
* @ Fix bug in number_format (Jon Forsberg)Andi Gutmans2000-04-151-1/+2
|
* added the other usefull constants besides M_PI from math.hHartmut Holzgraefe2000-04-081-0/+1
| | | | | as PHP constants
* Use sprintf everywhere and define sprintf to php_sprintf, if sprintf is broken.Sascha Schumann2000-03-121-1/+1
|
* Fix build on systems which lack snprintf or vsnprintf.Sascha Schumann2000-03-121-1/+0
| | | | | PR: #3786
* Only two lines are allowed here.Egon Schmid2000-03-011-1/+0
|
* round(-0.1) will now return 0 instead of -0Hartmut Holzgraefe2000-03-011-1/+5
|
* More protos.Egon Schmid2000-02-241-2/+2
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-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-28/+28
|
* Optimize a tiny bitEvan Klinger1999-11-221-1/+1
|
* One typo corrected.Egon Schmid1999-10-171-1/+1
|
* - Converted math.c to use new convert_to_number_ex() macro.Andi Gutmans1999-10-151-25/+11
|
* @- Upgraded math-funtions to use new Zend function API (Thies)Thies C. Arntzen1999-10-131-218/+244
|
* Kill compiler warning.Andrey Hristov1999-09-071-1/+1
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-3/+3
| | | | | php3_compat.h)
* Fix bug #1914Zeev Suraski1999-07-311-0/+5
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-27/+27
|
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-10/+0
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+0
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+708
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.