THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

PHP array_combine() Function

PHP Array Reference PHP Array Reference

Example

Create an array by using the elements from one "keys" array and one "values" array:

<?php
$fname=array("Peter","Ben","Joe");
$age=array("35","37","43");

$c=array_combine($fname,$age);
print_r($c);
?>
Run example »

Definition and Usage

The array_combine() function creates an array by using the elements from one "keys" array and one "values" array.

Note: Both arrays must have equal number of elements!


Syntax

array_combine(keys,values);

Parameter Description
keys Required. Array of keys
values Required. Array of values

Technical Details

Return Value: Returns the combined array. FALSE if number of elements does not match
PHP Version: 5+
Changelog: Versions before PHP 5.4 issues E_WARNING and returns FALSE for empty arrays

PHP Array Reference PHP Array Reference