#
6cc8919d |
| 26-Apr-2002 |
Yasuo Ohgaki |
Fixed bug #16861. touch sets wrong atime or mtime when they are not specified. touch silently failed when HAVE_UTIME is not defined. (This needs more consideration. Which platform does no
Fixed bug #16861. touch sets wrong atime or mtime when they are not specified. touch silently failed when HAVE_UTIME is not defined. (This needs more consideration. Which platform does not support it?) # Derick, after HAVE_UTIME issue is resovled, this should be merged. # or we can just merge 1st problem for now.
show more ...
|
Revision tags: php-4.2.0 |
|
#
b10b24d5 |
| 16-Apr-2002 |
Wez Furlong |
Always initialize wrappers, regardless of PG(allow_url_fopen). Add is_url field to wrapper structure; the stream wrapper openers will disallow opening is is_url && !PG(allow_url_fopen). A
Always initialize wrappers, regardless of PG(allow_url_fopen). Add is_url field to wrapper structure; the stream wrapper openers will disallow opening is is_url && !PG(allow_url_fopen). Add infrastructure for stat($url) and opendir($url). Tidy up/centralize code that locates and instantiates wrappers for the various operations. Implement opendir for plain files. Make the PHP opendir and dir functions use the streams implementations. Add modelines for syntax highlighting the pear scripts in vim
show more ...
|
Revision tags: php-4.2.0RC4, php-4.2.0RC3 |
|
#
e1d0a147 |
| 10-Apr-2002 |
Wez Furlong |
Implement stream context and status notification system. Bump the BC for zlib notice to a warning # See my RFC to php-dev a few days ago
|
Revision tags: php-4.2.0RC2 |
|
#
27d1f7db |
| 03-Apr-2002 |
Wez Furlong |
Tidy up win32 implementation of proc_open. Respect safe_mode_exec_dir. Implement proc_close and return process return code under win32.
|
#
a0f165a5 |
| 02-Apr-2002 |
Wez Furlong |
main/streams.c
|
#
1f9b519c |
| 23-Mar-2002 |
Derick Rethans |
- Remove read_uploaded_file
|
#
e2f110d9 |
| 23-Mar-2002 |
Derick Rethans |
- Added read_uploaded_file (patch by Andrew Sitnikov <sitnikov@infonet.ee>)
|
#
10811cd0 |
| 22-Mar-2002 |
Hartmut Holzgraefe |
getting rid of the warn_not_available alias
|
#
b00d9a5b |
| 21-Mar-2002 |
Hartmut Holzgraefe |
added fnmatch() and glob() functions could someone please check if i got the virtual dir stuff right?
|
#
1cf188ae |
| 21-Mar-2002 |
Andrei Zmievski |
Fix compilation when PCRE is disabled.
|
Revision tags: php-4.2.0RC1 |
|
#
32a4f355 |
| 19-Mar-2002 |
Wez Furlong |
register some constants for user streams
|
#
6abe71be |
| 19-Mar-2002 |
Wez Furlong |
s/fgetwrapperdata/file_get_wrapper_data/
|
#
06712a50 |
| 19-Mar-2002 |
Wez Furlong |
Implement user-space streams. There's probably room for improvement, docs will following some time this week.
|
#
1222d808 |
| 18-Mar-2002 |
Wez Furlong |
having streams is now the default
|
#
a145646e |
| 18-Mar-2002 |
Zeev Suraski |
Fix build
|
#
68d2592f |
| 18-Mar-2002 |
Sascha Schumann |
Rename HAVE_PHP_STREAM to PHP_HAVE_STREAMS, because 1.) a PHP-specific symbol should be in the php namespace, and 2.) there are multiple streams and the old configure parameter was plura
Rename HAVE_PHP_STREAM to PHP_HAVE_STREAMS, because 1.) a PHP-specific symbol should be in the php namespace, and 2.) there are multiple streams and the old configure parameter was plural, too.
show more ...
|
#
73e79322 |
| 18-Mar-2002 |
Zeev Suraski |
Fix the build and all of the outstanding VC++ warnings
|
#
d2d87622 |
| 17-Mar-2002 |
Wez Furlong |
Streams now make more use of the memory manager, so tracking down leaking streams should be easier. # I hate these big commits
|
#
cce45de1 |
| 17-Mar-2002 |
Stefan Esser |
move_uploaded_files checks open_basedir now
|
#
0895998b |
| 16-Mar-2002 |
Wez Furlong |
s/get_file_contents/file_get_contents/
|
#
04473271 |
| 16-Mar-2002 |
Wez Furlong |
Implement get_file_contents() as discussed (briefly!) by myself, Derick and Sterling on php-dev some months ago. It returns the file contents as a string, and uses mmap if possible.
|
#
d4e63bc5 |
| 16-Mar-2002 |
Markus Fischer |
- Raise warning when trying to execute non-executeable shell for mail delivery binary.
|
#
09213d7b |
| 16-Mar-2002 |
Wez Furlong |
change * formatting
|
#
0f65280c |
| 15-Mar-2002 |
Wez Furlong |
New PHP streams...
|
Revision tags: help |
|
#
82a8d372 |
| 01-Mar-2002 |
Yasuo Ohgaki |
Added ob_get_status() to get array of buffers and it's status. (DO NOT document this function yet) Fixed crash bug with ob_end_*() function. ob_end_*() will not delete buffers that m
Added ob_get_status() to get array of buffers and it's status. (DO NOT document this function yet) Fixed crash bug with ob_end_*() function. ob_end_*() will not delete buffers that may not be deleted. php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for if the buffer created may be deleted or not. Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be deleted until script finshes. Changed ob_*() function that have void return type to bool. All ob_*() functions return TRUE for success, FALSE for failure. @ - Added ob_get_status() to get array of buffers and it's status. (Yasuo) @ - Fixed crash bug with ob_end_*() function. ob_end_*() will not delete @ buffers that may not be deleted. (Yasuo) @ - Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be @ deleted until script finshes. (Yasuo) @ - Changed ob_*() function that have void return type to bool. All ob_*() @ functions return TRUE for success, FALSE for failure. (Yasuo)
show more ...
|