3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Foo; class Loader { public function __construct() { spl_autoload_register([$this, 'load']); } public static function load() {} } spl_autoload_register(['Loader', 'load']); new Loader(); var_dump(spl_autoload_functions());
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught TypeError: spl_autoload_register(): Argument #1 ($callback) must be a valid callback or null, class "Loader" not found in /in/0P7m3:9 Stack trace: #0 /in/0P7m3(9): spl_autoload_register(Array) #1 {main} thrown in /in/0P7m3 on line 9
Process exited with code 255.
Output for 8.0.0 - 8.0.30
Fatal error: Uncaught TypeError: spl_autoload_register(): Argument #1 ($callback) must be a valid callback, class "Loader" not found in /in/0P7m3:9 Stack trace: #0 /in/0P7m3(9): spl_autoload_register(Array) #1 {main} thrown in /in/0P7m3 on line 9
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Fatal error: Uncaught LogicException: Passed array does not specify an existing static method (class 'Loader' not found) in /in/0P7m3:9 Stack trace: #0 /in/0P7m3(9): spl_autoload_register(Array) #1 {main} thrown in /in/0P7m3 on line 9
Process exited with code 255.
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Fatal error: Uncaught exception 'LogicException' with message 'Passed array does not specify an existing static method (class 'Loader' not found)' in /in/0P7m3:9 Stack trace: #0 /in/0P7m3(9): spl_autoload_register(Array) #1 {main} thrown in /in/0P7m3 on line 9
Process exited with code 255.

preferences:
312.83 ms | 402 KiB | 329 Q