#
91df221a |
| 07-Sep-2002 |
Sterling Hughes |
@ Made the User-Agent that php's fopen wrappers send, configurable via @ php.ini or via a stream context. (Sterling) The stream context is untested, but it should/could work :) Either w
@ Made the User-Agent that php's fopen wrappers send, configurable via @ php.ini or via a stream context. (Sterling) The stream context is untested, but it should/could work :) Either way it doesn't make the rest of the code bad. Wez -- please take a looksie for me :)
show more ...
|
Revision tags: php-4.2.3 |
|
#
8b8f1e05 |
| 05-Sep-2002 |
Anantha Kesari H Y |
NetWare related additions/modifications |
Revision tags: php-4.2.3RC2 |
|
#
6063c8c4 |
| 26-Aug-2002 |
Marcus Boerger |
fix fwrite to no longer apply stripslashes on input string when magic_quotes_runtime is set On. |
#
ba409639 |
| 25-Aug-2002 |
Marcus Boerger |
improoved error messages |
#
5c6ad38c |
| 25-Aug-2002 |
Wez Furlong |
Prevent possible problems with include_path. |
#
149ad05b |
| 24-Aug-2002 |
Marcus Boerger |
php_error_docref #New conversion available at: http://docref.txt.marcus-boerger.de |
Revision tags: php-4.2.3RC1 |
|
#
9d348ea8 |
| 20-Aug-2002 |
Wez Furlong |
Implement filter API for streams. Filters can be stacked onto a stream; more details will follow in docs and on php-dev. Implement "string.rot13" filter Allows the foll
Implement filter API for streams. Filters can be stacked onto a stream; more details will follow in docs and on php-dev. Implement "string.rot13" filter Allows the following script: $fp = fopen("file.txt", "r"); stream_filter_prepend($fp, "string.rot13"); // File contents will be subject to a rot13 transformation before // being output. fpassthru($fp); fclose($fp);
show more ...
|
#
5f9a5a7c |
| 19-Aug-2002 |
Wez Furlong |
Remove php_stream_sock_set_blocking and replace with php_stream_set_option which can be used in a similar way as ioctl() to set options for streams. Current options include buffering
Remove php_stream_sock_set_blocking and replace with php_stream_set_option which can be used in a similar way as ioctl() to set options for streams. Current options include buffering and blocking support. o Buffer control is support for stdio based streams. o Blocking/non-blocking is supported for stdio and socket based streams.
show more ...
|
#
1aea030c |
| 18-Aug-2002 |
Ilia Alshanetsky |
Corrected if() syntax in previous patch. |
#
d42dbfce |
| 18-Aug-2002 |
Ilia Alshanetsky |
Fixed a segmentation fault that would occur if an entry contained a non-terminated enclosure. Bug #12556 |
#
b025bb10 |
| 13-Aug-2002 |
Rasmus Lerdorf |
Missing proto |
#
ccb5c84b |
| 09-Aug-2002 |
Wez Furlong |
Centralize some blocking socket related code. # It's been a while since I wrote this! |
#
c5281571 |
| 08-Aug-2002 |
Yasuo Ohgaki |
Remove duplicated checks. |
Revision tags: dev, php-4.2.2 |
|
#
e3797ab7 |
| 13-Jul-2002 |
foobar |
Fixed bug: #16638. |
#
d907b2d5 |
| 10-Jul-2002 |
Jason Greene |
@Fixed socket_set_timeout on win32 (Jason, Edin, Jani) |
#
b4146638 |
| 08-Jul-2002 |
Andi Gutmans |
- Fix TSRMLS_* stuff |
#
728f2de4 |
| 08-Jul-2002 |
Derick Rethans |
Unify error messages |
Revision tags: INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt |
|
#
7b7608d6 |
| 02-Jul-2002 |
Derick Rethans |
- Fix for bug #15547 (Patch by Justin Garrett <usjgarrett@byu.edu>) |
Revision tags: php-4.3.0dev_zend2_alpha2 |
|
#
303852b4 |
| 18-Jun-2002 |
Hartmut Holzgraefe |
- fixed bug in enclosure handling (was still hardcoded to '"' in one place) - added possibility to pass empty enclosure if you really don't want one |
Revision tags: php-4.3.0dev, php5_5_0 |
|
#
f9936a84 |
| 10-Jun-2002 |
Markus Fischer |
- Fix proto. |
Revision tags: RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10 |
|
#
fc059f5e |
| 23-May-2002 |
Andi Gutmans |
- Fix typo |
#
c37d2a97 |
| 23-May-2002 |
Derick Rethans |
- Fix errormessage and whitespace |
#
b768cf03 |
| 23-May-2002 |
Yasuo Ohgaki |
Added 4th parameter to specify enclosure character. Patch by Dean Richard Benson <dean@vipersoft.co.uk> Spit more meaningful error messages when delim and/or enclosure char is null. |
Revision tags: RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1 |
|
#
93af4bdf |
| 12-May-2002 |
Rasmus Lerdorf |
Change safe-mode rule for rmdir() to match unlink() - allow is target is opened by caller or in a directory owned by caller @ Minor fix to rmdir() under safe-mode (Rasmus) |
Revision tags: php-4.2.1RC2 |
|
#
51e2ea5e |
| 06-May-2002 |
jim winstead |
fix problem with mkdir() on freebsd |