3v4l.org

run code in 300+ PHP versions simultaneously
<?php class User {} function manageUsers(User ...$users) { var_dump($users); } $arrayOfUsers = [ new User(), new User(), new User(), ]; manageUsers($arrayOfUsers);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
Fatal error: Uncaught TypeError: manageUsers(): Argument #1 must be of type User, array given, called in /in/OTMWP on line 16 and defined in /in/OTMWP:5 Stack trace: #0 /in/OTMWP(16): manageUsers(Array) #1 {main} thrown in /in/OTMWP on line 5
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 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 TypeError: Argument 1 passed to manageUsers() must be an instance of User, array given, called in /in/OTMWP on line 16 and defined in /in/OTMWP:5 Stack trace: #0 /in/OTMWP(16): manageUsers(Array) #1 {main} thrown in /in/OTMWP on line 5
Process exited with code 255.
Output for 5.6.8 - 5.6.28
Catchable fatal error: Argument 1 passed to manageUsers() must be an instance of User, array given, called in /in/OTMWP on line 16 and defined in /in/OTMWP on line 5
Process exited with code 255.
Output for 5.5.24 - 5.5.35
Parse error: syntax error, unexpected '.', expecting '&' or variable (T_VARIABLE) in /in/OTMWP on line 5
Process exited with code 255.

preferences:
124.83 ms | 410 KiB | 5 Q