summaryrefslogtreecommitdiff
path: root/main/php.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Simplify the code base as this getpwd() was used only onceDmitry Stogov2006-11-101-1/+0
|
* Fixed VIRTUAL_DIR inconsistencyDmitry Stogov2006-09-041-4/+0
|
* Added automatic module globals managementDmitry Stogov2006-06-151-0/+6
|
* Missing definition, patch by Steph FoxEdin Kadribasic2006-05-251-0/+1
|
* MFH Fix for RISC OSAlex Waugh2006-03-071-1/+1
|
* - MFH: Function deprecation flagMarcus Boerger2006-02-251-0/+2
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* Fixed bug #31347 (is_dir and is_file (incorrectly) return true for anyIlia Alshanetsky2005-12-201-0/+2
| | | | | string greater then 255 characters).
* typo fixHartmut Holzgraefe2005-08-071-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Improved PHP extension loading mechanism with support for module ↵Dmitry Stogov2005-06-171-1/+1
| | | | dependencies and conflicts
* - Remove relicfoobar2005-04-171-1/+0
|
* Fix pathfoobar2005-03-261-1/+1
|
* Define PHP_ABSTRACT_MEAndrei Zmievski2005-03-211-0/+1
|
* Fix Jani breakageRasmus Lerdorf2005-03-161-1/+1
|
* This makes more sense. (Someone might actually use php_error_docref0() :)foobar2005-03-081-1/+3
|
* - This was not needed (said Marcus)foobar2005-03-081-3/+1
|
* NetWare Libc has php.h so no need of having netware specific block hereAnantha Kesari H Y2005-02-141-3/+0
|
* - Fix another generated header includefoobar2005-01-141-1/+1
|
* bump PHP API number.Wez Furlong2004-12-261-1/+1
| | | | | | | | | | | This is so that we can work around the signature change in the get_method overloaded object handler in our portable extensions. Yes, you could argue that the zend api number needs bumping, but then you could argue which one to bump, as neither of them is specific or generic enough. Besides all that, the PHP API number really needs a good old bump anyway.
* Fixed: removed possible integer over-/underflowsStefan Esser2004-11-281-0/+8
|
* Fix win32 build.Frank M. Kromann2004-11-151-0/+2
|
* - MFH4.3: Cleaned up some of the locale mess:Derick Rethans2004-11-151-4/+0
| | | | | | | | * all internal use of sprintf, snprintf and the like will always use the . as thousands seperator (if php.h is included only!). * echo, printf() and sprintf() always render locale-aware * added the %F modifier for non-locale aware rendering for floats
* make sleep() return it's return value when possibleAndrey Hristov2004-11-021-0/+1
| | | | | | | | #on some *nix systems sleep() is implemented with SIGALRM. When SIGALRM #interrupts sleep() it returns the number of seconds that has to be slept #till the number of seconds wanted by the script. Sleep() on Windows is # void.
* - Add missing macroMarcus Boerger2004-09-301-0/+1
|
* removed unwanted NEW_LIBC checksAnantha Kesari H Y2004-09-291-18/+0
|
* Add missing macroMarcus Boerger2004-01-121-0/+1
| | | | | # by popular demand, more and more exts need this
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* Fixed bug #26707 (Incorrect error for disabled functions/classes).Ilia Alshanetsky2003-12-241-1/+1
|
* - Always store the URI path in the streams structure, and expose it withDerick Rethans2003-11-031-1/+1
| | | | | stream_get_meta_data().
* Fixed bug #25293 (Output correct EOL to error_log)Ilia Alshanetsky2003-09-241-0/+6
|
* Fix use of EXTERN_C macrosArd Biesheuvel2003-09-021-12/+12
|
* Add define to reset error handling more easilyMarcus Boerger2003-08-291-0/+1
|
* add format attribute where appropiateSascha Schumann2003-08-281-12/+17
|
* Use ZEND_GCC_VERSION and ZEND_ATTRIBUTE_MALLOCSascha Schumann2003-08-281-1/+4
|
* Let GCC check format argumentsSascha Schumann2003-08-281-0/+6
|
* Updated PHP_API_VERSION to 20030820 for the php_setcookie api changeBrian France2003-08-221-1/+1
|
* linkage for C++Wez Furlong2003-08-181-1/+12
|
* Remove unnecessary macroZeev Suraski2003-08-031-1/+0
|
* undefine macros before defining themSascha Schumann2003-06-271-0/+2
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Bump API version - HEAD is no longer binary compatibleStanislav Malyshev2003-05-181-1/+1
| | | | | to 4.3 branch due to changes in globals, etc.
* Infrastructure to catch warnings and throw tehm as errors autmaticallyMarcus Boerger2003-05-071-0/+8
|
* Fix PUTS/PUTS_H to only evaluate their argument once.Sascha Schumann2003-04-191-2/+10
|
* Move memnstr into Zend and make an alias for BC in PHP.Andrei Zmievski2003-04-081-0/+2
|
* Introduce ZEND_ME() and ZEND_METHOD() macros. Use these for declaringAndrei Zmievski2003-04-041-0/+2
| | | | | class methods to avoid name collisions.
* Fixed bug #20256 (snprintf() not defined)foobar2003-02-251-1/+1
|
* Win32 build improvementsZeev Suraski2003-02-171-4/+0
|
* A add much more useful select(2) implementation than is provided byWez Furlong2003-02-161-0/+4
| | | | | | | | | | | | | windows sockets. The winsock implementation will only work with sockets; our implementation works with sockets and file descriptors. By association, stream_select() will now operate correctly with files, pipes and sockets. This change required linking against the winsock2 library. In terms of compatibility, only older versions of windows 95 do not have winsock2 installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user. Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x.
* A new file added and some old files modified for NetWare.Anantha Kesari H Y2003-01-031-6/+5
|