summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug64023.phpt
blob: 82924659e06a13ef0597f1fbaf5cf26c81600f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #64023: Overloading __toString() in SplFileInfo has no effect
--FILE--
<?php
class A extends \SplFileInfo
{
        public function __toString() {return ' -expected- ';}
}

$a = new A('/');

// Works
echo $a, $a->__toString(), $a->__toString() . '', "\n";

// Does not work - outputs parent::__toString()
echo $a . '', "\n";
--EXPECT--
 -expected-  -expected-  -expected- 
 -expected-