Answers for "associative array in php have same value join them"

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 "associative array in php have same value join them"

Browse Popular Code Answers by Language