History log of /PHP-5.4/ext/standard/file.c (Results 276 – 300 of 533)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 696e0a23 25-Sep-2002 Wez Furlong

Implement persistent streams. (for pfsockopen).
Juggle some includes/definitions.
Tidy up streams use in ext/standard/file.c


# 4cdf8c7c 24-Sep-2002 Wez Furlong

Fix EOL markers for file() so that Mac EOL work correctly.


# c74b9fac 23-Sep-2002 Wez Furlong

Implement a default_socket_timeout and auto_detect_line_endings ini options.
Also move user_agent from BG to FG.


# 4d8a07d5 23-Sep-2002 Wez Furlong

Implement read buffering in streams.
Eliminate similar code from network.c.
Implement fgets equivalent at the streams level, which can detect
the mac, dos and unix line endings and handle

Implement read buffering in streams.
Eliminate similar code from network.c.
Implement fgets equivalent at the streams level, which can detect
the mac, dos and unix line endings and handle them appropriately.
The default behaviour is unix (and dos) line endings.
An ini option to control this behaviour will follow.
# Don't forget to make clean!
# I've done some testing but would appreciate feedback from
# people with scripts/extensions that seek around a lot.

show more ...


# 687312be 13-Sep-2002 Ilia Alshanetsky

Do not create the destination file, if opening of the source file failed
during copy().


Revision tags: RELEASE_0_91, php-4.3.0dev_zend2_alpha3
# 3df412cf 07-Sep-2002 Wez Furlong

Fix a couple of bad pointer indirections (oops).
Lets stick to a single category of "http" for the "user_agent"
context override.


# 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


1...<<11121314151617181920>>...22