Description: ------------ http://www.php.net/manual/en/ref.stream.php
The constant list doesn't mention the version of PHP.
Edit bug report at http://bugs.php.net/?id=28469&edit=1
I think it doesn't need, because in the introduction it states that streams are avaliable since PHP 4.3.0 and AFAIK the constants are all avaliable since then.
wrong, that's why I opened a bug report :)
[EMAIL PROTECTED]:~$ php -v
PHP 4.3.6 (cli) (built: Apr 19 2004 13:55:10)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
with Turck MMCache v2.4.6, Copyright (c) 2002-2003 TurckSoft, St. Petersburg, by Dmitry Stogov
[EMAIL PROTECTED]:~$ php
<?php
error_reporting(E_ALL); echo STREAM_FILTER_WRITE . "\n";
?>
Notice: Use of undefined constant STREAM_FILTER_WRITE - assumed 'STREAM_FILTER_WRITE' in - on line 4
STREAM_FILTER_WRITE
[EMAIL PROTECTED]:~$
didou
