xref: /PHP-5.5/tests/lang/bug23489.phpt (revision 938d90f1)
1--TEST--
2Bug #23489 (ob_start() is broken with method callbacks)
3--FILE--
4<?php
5class 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?>
21failure
22--EXPECT--
23success
24