<?php class User {} function manageUsers(User ...$users) { var_dump($users); } $arrayOfUsers = [ new User(), new User(), new User(), ]; manageUsers($arrayOfUsers);
You have javascript disabled. You will not be able to edit any code.