Annotation of embedaddon/php/tests/lang/bug23489.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #23489 (ob_start() is broken with method callbacks)
                      3: --FILE--
                      4: <?php
                      5: class Test {
                      6:   function Test() {
                      7:     ob_start(
                      8:       array(
                      9:         $this, 'transform'
                     10:       )
                     11:     );
                     12:   }
                     13: 
                     14:   function transform($buffer) {
                     15:     return 'success';
                     16:   }
                     17: }
                     18: 
                     19: $t = new Test;
                     20: ?>
                     21: failure
                     22: --EXPECT--
                     23: success

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>