summaryrefslogtreecommitdiff
path: root/main/php.h
Commit message (Collapse)AuthorAgeFilesLines
...
* add opendir to VIRTUAL_DIRStanislav Malyshev2000-06-041-0/+2
|
* Use the new error codeZeev Suraski2000-06-021-5/+0
| | | | | | | | @- Added set_error_handler() to allow custom error handling functions, @ instead of the built-in error handling code (Zeev, Zend Engine) @- Renamed user_error() to trigger_error(); user_error() remains @ defined for compatibility (Zeev, Zend Engine)
* warn_not_available() will be used by other modules besidesHartmut Holzgraefe2000-05-291-0/+2
| | | | | ext/standard in the (very near) future
* Remove stale reference to .h fileZeev Suraski2000-05-291-3/+0
|
* a second (cleaner?) try on warnings about unsupported functionsHartmut Holzgraefe2000-05-271-5/+2
|
* - I'm not sure if PHP_NOT_IN_THIS_BUILD is the way to handle theseAndi Gutmans2000-05-271-1/+1
| | | | | - functions but in any case I have changed it to PHP_NOT_IN_THIS_BUILD()
* if a module provides a function it should also do so if the functionHartmut Holzgraefe2000-05-261-0/+6
| | | | | | | | is not functional due to configure findings the function should offer a meaningful warning if it is not supported instead of just beeing undefined i had already changed this in 'gd', now this is doing it for 'standard'
* - Virtual current working directory is now enabledAndi Gutmans2000-05-231-1/+5
| | | | | - Added support for mkdir()/rmdir() and more
* - Support virtual unlink()Andi Gutmans2000-05-231-0/+2
|
* Minor output modsZeev Suraski2000-05-191-2/+0
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* - Take Sascha's advice and create on V_OPEN() which replaces open().Andi Gutmans2000-04-301-4/+3
| | | | | | | | | - Unlike the other macros its argument has to have braces around it, for - example, open(filename, flags) becomse V_OPEN((filename, flags)) - Made small conversion to new Zend macros. The ugly (*foo)->value.str.val - now becomes Z_STRVAL_PP(foo). PP means pointer pointer, there also exist - single P's for example foo->value.str.val becomes Z_STRVAL_P(foo).
* - Implement V_OPEN() V_OPEN_CREAT() and V_CREAT().Andi Gutmans2000-04-291-0/+6
| | | | | Next step is to substitute all open()'s and creat()'s in the PHP tree
* - Never mind. Seems like we're still missing the open() functionalityZeev Suraski2000-04-291-1/+1
|
* - Give VIRTUAL_DIR another try after testing it extensively on our web siteZeev Suraski2000-04-291-1/+1
|
* More error handling work (still completely disabled)Zeev Suraski2000-04-271-1/+8
|
* - virtual_lstat() doesn't exist on Windows.Andi Gutmans2000-04-201-0/+4
|
* - Export strlcat()/strcpy() for Frank.Andi Gutmans2000-04-201-2/+2
| | | | | - Windows doesn't have lstat().
* - Fix virtual cwd bugZeev Suraski2000-04-201-0/+2
| | | | | - Add more V_STAT() V_LSTAT() changes
* - Add missing V_STAT()Andi Gutmans2000-04-201-0/+2
|
* - Change PHP_ to V_ (directory & file functions)Andi Gutmans2000-04-151-10/+10
|
* - Turn off VIRTUAL_DIR by defaultAndi Gutmans2000-04-111-1/+1
|
* - Don't need to extern functionsAndi Gutmans2000-04-091-1/+1
| | | | | - Use virtual_file_ex() in expand_filepath()
* - Make all CVS users use the new virtual dir support.Andi Gutmans2000-04-081-2/+0
| | | | | Will probably disable this for the release.
* - This slipped in. Enable VIRTUAL_DIR when we're in ZTS. Eventually itAndi Gutmans2000-04-071-0/+3
| | | | | should always be enabled.
* - Add wddx support to the default buildAndi Gutmans2000-04-071-1/+1
|
* - This version of chdir_file should be compatible with the Apache one.Andi Gutmans2000-04-021-0/+2
|
* - Virtual cwd compiles now (need to uncomment #define in php.h for it toAndi Gutmans2000-04-021-0/+2
| | | | | | be enbaled right now). It seems to work very basic stuff
* - Hopefully got most of them. We also need a chdir_file function likeAndi Gutmans2000-03-301-0/+2
| | | | | for Apache.
* - Fix another bug in session.cAndi Gutmans2000-03-301-0/+10
| | | | | - Start using the new PHP_GETCWD() and co. macros
* - Update dspZeev Suraski2000-03-251-2/+0
| | | | | - Remove unnecessary includes
* 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-5/+2
| | | | | PR: #3786
* - Don't define DEBUG anymore. Everyone should use PHP_DEBUG.Andi Gutmans2000-03-111-3/+3
| | | | | | | | There are 2-3 third-party libs in PHP which use DEBUG and I left them this way (primary example is pcrelib). - Please test things and Andrei, can you check that pcrelib stopped printing the warning messages?
* @Cleaned up extension namespace (Stig)Stig Bakken2000-03-061-2/+2
| | | | | | Cleaned up extension namespace, and changed ext/standard into one single extension.
* - Fix Win32 buildAndi Gutmans2000-03-041-2/+0
|
* Prefix some symbols with php_Sascha Schumann2000-03-041-0/+1
| | | | | ^(pcre|Xml|XML).*
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* *** empty log message ***Zeev Suraski2000-02-191-3/+3
|
* Fix warnings when compiling static Apache moduleSascha Schumann2000-02-181-1/+1
|
* Fine tune Andi's patchZeev Suraski2000-02-111-6/+4
|
* request_info.c is dead! long live SAPIZeev Suraski2000-02-101-2/+0
| | | | | | | @- Finished the server abstraction layer; All of the PHP code is now shared @ across different servers (Apache, CGI, IIS, etc.), except for thin @ interface modules (Zeev)
* SAPIfication, Episode VI: Return of the SAPIZeev Suraski2000-02-101-48/+3
| | | | | | | | | | | | | | | Remove mostly all references to APACHE and CGI_BINARY from the code. - Apache include files are no longer included by any PHP code, except for the Apache SAPI module. - No server specific code is in any of the base PHP code. Still left to be done: - Eliminate any references to APACHE from the few remaining modules. - Move request_info.c's logic to SAPI - Modify the regex function names, and globals, so that we can always include them, without having to fear any interference with Apache; Always use the bundled regex library
* - Little fixAndi Gutmans2000-02-101-1/+1
|
* - Introduce PHP_WIN32Andi Gutmans2000-02-101-4/+6
|
* Remove the post-startup callback support. Modules are now started only afterZeev Suraski2000-01-161-1/+0
| | | | | | the entire engine is started. People - please make sure that the session module works properly for you.
* - don't set php_errormsg on errors that will cause a zend_bailout().Thies C. Arntzen2000-01-151-0/+1
| | | | | | | | | using zend_hash_update() can make things worse in this situation. - new function php_register_pre_request_shutdown(). this way modules can register callbacks that will be called as soon as execution of the script is done but *before* any cleanup (global symbol_table etc) has taken place.
* 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).
* Happy new year (especially to Thies :)Zeev Suraski1999-12-311-6/+0
| | | | | | - Zend branch patches merged in - get the PHP tree uptodate - Clean
* Typedef socklen_t, if it is not availableSascha Schumann1999-12-301-0/+4
|