Problem Statement
What do named arguments in PHP 8 allow you to do?
Explanation
Named arguments allow passing arguments to functions by name instead of position, improving code readability and allowing flexible argument ordering.
Code Solution
SolutionRead Only
displayUser(age:25, name:'John');
