<?php function greet($name, $title) { print "Hello, $title $name"; } $args = ['title' => 'Mr.', 'name' => 'Doe']; greet(...$args); ?>
You have javascript disabled. You will not be able to edit any code.