Answers for "new associative array that uses the values from one array as keys and the values from another array as element values"

PHP
0

associative array in php have same value join them

<?php
$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);

print_r($c);
?>
Posted by: Guest on October-24-2020

Code answers related to "new associative array that uses the values from one array as keys and the values from another array as element values"

Browse Popular Code Answers by Language