array_combine.php 180 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 <?php require_once("../../config/dmsDefaults.php"); $a = array('green', 'red', 'yellow'); $b = array('avocado', 'apple', 'banana'); $c = array_combine($a, $b); print_r($c); ?>