3v4l.org

run code in 300+ PHP versions simultaneously
<?php class ParentClassWithToStringMixedReturn { public function __toString() { return 'a'; } } class WithParentMixedReturn extends ParentClassWithToStringMixedReturn { public function __toString(): string { return 'value'; } } echo (new WithParentMixedReturn());
Output for 7.3.4, 7.4.33, 8.2.28 - 8.2.29, 8.3.5 - 8.3.26, 8.4.5 - 8.4.13
value

preferences:
54.08 ms | 406 KiB | 5 Q