|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-05-05 15:01 UTC] moriyoshi@php.net
[2003-05-05 17:37 UTC] helly@php.net
[2003-05-07 15:39 UTC] davey@php.net
[2003-05-07 15:42 UTC] edink@php.net
[2003-05-07 15:43 UTC] davey@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 20:00:01 2025 UTC |
The following code <?php class Test { function Test() { ob_start( array( $this, 'transform' ) ); } function transform($buffer) { return 'bar'; } } $t = new Test; ?> foo outputs 'bar', as it is expected to do, with PHP 4.3.1. With PHP 4.3.2-RC and PHP 5.0.0-dev it outputs 'foo' which is just plain wrong.