Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_array_map

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2020-01-07T00:32:49Z

Updated

2020-01-07T00:32:49Z

<?php

$a = array(1, 2, 3, 4, 5);

$b = array("one", "two", "three", "four", "five");

$c = array("uno", "dos", "tres", "cuatro", "cinco");

$d = array_map(null, $a, $b, $c);

print_r($d);

?>
INFO