3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** @param \SplFileInfo $object The object (not referenced). */ function testOk($object) { $object->getATime (); // Content Assist works } /** * * @param * \SplFileInfo &$object The object (referenced, notice the &). * */ function testOk(&$object) { $object->getATime (); // Content Assist does not work } ?>
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.31
Fatal error: Cannot redeclare testOk() (previously declared in /in/IsQF7:6) in /in/IsQF7 on line 17
Process exited with code 255.

preferences:
200.7 ms | 1395 KiB | 68 Q