PHP array_combine() Function
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);
?>
Try it Yourself »
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 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
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.