php-src/win32/build
Sara Golemon 30a2bd1d11 Another (and hopefully last) major streams commit.
This moves unicode conversion to the filter layer
(rather than at the lower streams layer)
unicode_filter.c has been moved from ext/unicode to main/streams
as it's an integral part of the streams unicode conversion process.

There are now three ways to set encoding on a stream:

(1) By context
$ctx = stream_context_create(NULL,array('encoding'=>'latin1'));
$fp = fopen('somefile', 'r+t', false, $ctx);

(2) By stream_encoding()
$fp = fopen('somefile', 'r+');
stream_encoding($fp, 'latin1');

(3) By filter
$fp = fopen('somefile', 'r+');
stream_filter_append($fp, 'unicode.from.latin1', STREAM_FILTER_READ);
stream_filter_append($fp, 'unicode.to.latin1', STREAM_FILTER_WRITE);

Note: Methods 1 and 2 are convenience wrappers around method 3.
2006-03-29 01:20:43 +00:00
..
buildconf.js bump year and license version 2006-01-01 13:10:10 +00:00
config.w32 Another (and hopefully last) major streams commit. 2006-03-29 01:20:43 +00:00
config.w32.h.in Fixed bug #36568 (memory_limit setting on win32 has no effect) 2006-03-14 14:19:19 +00:00
configure.tail Add new (optional!) win32 build infrastructure. 2003-12-02 23:17:04 +00:00
confutils.js bump year and license version 2006-01-01 13:10:10 +00:00
cvsclean.js bump year and license version 2006-01-01 13:10:10 +00:00
deplister.c bump year and license version 2006-01-01 13:10:10 +00:00
Makefile bump year and license version 2006-01-01 13:10:10 +00:00
mkdist.php Use PEAR bundle from the build template 2005-03-26 21:32:20 +00:00
php.ico Search for pecl extensions under php-src/pecl as a convenience for 2003-12-04 01:37:52 +00:00
registersyslog.php Generate a .reg file for the syslog stuff 2004-08-05 12:15:17 +00:00
template.rc - Fix charset 2006-02-08 21:07:41 +00:00
wsyslog.mc Fix bug #8314: sane syslog output to the WinNT event log. 2004-07-31 23:59:46 +00:00