fork download
  1. <?php
  2.  
  3. $a1 = [ '59', '60', '19' ];
  4. $a2 = [ '3', '2', '1' ];
  5.  
  6. print_r(array_map(function($x, $y) { return $x * $y; }, $a1, $a2));
Success #stdin #stdout 0.02s 24532KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 177
    [1] => 120
    [2] => 19
)