<?php function say($n, $m) { return "The number $n is called $m in Spanish"; } function arrays() { return [ [ 1, 2, 3 ], [ 'uno', 'dos', 'tres' ], ]; } print_r( array_map('say', ...arrays()) );
You have javascript disabled. You will not be able to edit any code.