History log of /PHP-5.3/ext/standard/file.h (Results 26 – 50 of 112)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# 1128955a 14-Dec-2003 Ilia Alshanetsky

Fixed compiler warnings.


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2
# e2166950 30-Sep-2003 Stanislav Malyshev

MF4: allow realpath() for win32 non-ZTS


Revision tags: php-4.3.4RC1, RELEASE_0_7, php-4.3.3, php-4.3.3RC4, RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2, php-5.0.0b1, php-4.3.3RC1
# 6bcf8106 15-Jun-2003 Edin Kadribasic

This needs to be exported for dynamic extensions


# f68c7ff2 10-Jun-2003 James Cox

updating license information in the headers.


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT
# 83b7b75c 21-May-2003 Sara Golemon

Implement default contexts. For the moment this is useless
but it will be used soon for connection pooling.


Revision tags: php-4.3.2RC3, RELEASE_0_9b, SPL_ALPHA, php-4.3.2RC2, RELEASE_0_6, RELEASE_0_5, init
# 87c5019d 08-Apr-2003 Sara Golemon

Switch file_put_contents 'bool use_include_path' to 'int flags' to allow other options such as appending


# a45b4258 08-Apr-2003 foobar

file_set_contents -> file_put_contents


Revision tags: php-4.3.2RC1
# 39b8f06f 12-Mar-2003 Sterling Hughes

@ Add the file_set_contents() function, as a complement to the file_get_contents()
@ function. (Sterling)


# 1b53a2d1 28-Feb-2003 Wez Furlong

New user-space functions:
. stream_socket_client() - similar to fsockopen(), but more powerful.
. stream_socket_server() - Creates a server socket.
. stream_socket_accept() - Accept

New user-space functions:
. stream_socket_client() - similar to fsockopen(), but more powerful.
. stream_socket_server() - Creates a server socket.
. stream_socket_accept() - Accept a client connection.
. stream_socket_get_name() - Get local or remote name of socket.

Tidy up some leaks and debug printfs.
Move more streams functions into streamsfuncs.c and streamsfuncs.h.

show more ...


# 5def83df 27-Feb-2003 Wez Furlong

Move streams specific stuff from ext/standard/file.c -> ext/standard/streams.c
Move win32 select implementation into win32/.
Will update win32 build in a moment.


# 8908faa4 22-Feb-2003 Ilia Alshanetsky

Revent previous patch, adding of file_write_content() was premature.


# d2e2fbcc 22-Feb-2003 Ilia Alshanetsky

int/long change.


Revision tags: php-4.3.1
# 53b7b0eb 10-Feb-2003 Ilia Alshanetsky

Merged the flags for the file() function into a single flag.


# f98ea4c4 09-Feb-2003 Ilia Alshanetsky

Added feature request #9173 (added stream_get_line(), this function will
read either the specified number of bytes or until the ending string is
found).


Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# 7b372723 03-Jan-2003 Sara Golemon

Added stream_get_wrappers()


# b506f5c8 31-Dec-2002 Sebastian Bergmann

Bump year.


Revision tags: php-4.3.0, php-4.3.0RC4, RELEASE_1_0b3, php-4.3.0RC3
# 0d7957bc 30-Nov-2002 Marcus Boerger

Bug #20433


Revision tags: php-4.3.0RC2, RELEASE_1_0b2, BEFORE_RENAMING, php-4.3.0RC1, php-4.3.0pre2, RELEASE_1_0b1, php-4.3.0pre1, MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003
# 76947703 28-Sep-2002 Wez Furlong

Rename streams functions to fit with naming conventions, adding aliases
for old functions where required.
Make use of recent changes to chunk size and timeout setting code.


# 315e0a59 27-Sep-2002 Wez Furlong

Implement stream_select() which works just like socket_select, but only on
streams.
@ - Added stream_select() which works like socket_select but only works on
@ streams returned by fope

Implement stream_select() which works just like socket_select, but only on
streams.
@ - Added stream_select() which works like socket_select but only works on
@ streams returned by fopen(), fsockopen() and pfsockopen(). (Wez)

show more ...


# c484eb8c 26-Sep-2002 Wez Furlong

Fix segfault in wrapper error log mechanism when errors are logged on
second and subsequent events.
Implement very simple recursion protection for user streams written
like this:
clas

Fix segfault in wrapper error log mechanism when errors are logged on
second and subsequent events.
Implement very simple recursion protection for user streams written
like this:
class urlEncodeStream {
var $fp = NULL;

function stream_open($path, $mode, $options, &$opened_path)
{
$this->fp = fopen($path, $mode); // <-- this recurses infinitely
return is_resource($this->fp);
}
}

file_register_wrapper('urlencode', 'urlEncodeStream');
$fp = fopen('urlencode:///tmp/outputfile.txt', 'w');

Noticed by: Yasuo.

show more ...


# 4c2a9c09 26-Sep-2002 Wez Furlong

Remove an unused variable and a now-unused function.


# 3a67c677 26-Sep-2002 Wez Furlong

Rename file_get_wrapper_data -> file_get_meta_data.
It now always returns useful information for all streams.
Unified that data with socket_get_status and made socket_get_status
an alias

Rename file_get_wrapper_data -> file_get_meta_data.
It now always returns useful information for all streams.
Unified that data with socket_get_status and made socket_get_status
an alias for file_get_meta_data.

Fix Location header following which was broken in this commit:
http://cvs.php.net/diff.php/php4/ext/standard/http_fopen_wrapper.c?r1=1.41&r2=1.42&ty=h

show more ...


# 696e0a23 25-Sep-2002 Wez Furlong

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


# d14a7e0c 23-Sep-2002 Wez Furlong

WS


# 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.


12345