PHP » PYTHON |
login |
register |
about
|
PYTHON array_combine
is this article helpful?
|
Python replacement for PHP's array_combine
[
edit
| history
]
result = dict(zip(keys, values)) array_combine(PHP 5) array_combine — Creates an array by using one array for keys and another for its values Description
array array_combine
( array $keys
, array $values
)
Creates an array by using the values from the keys array as keys and the values from the values array as the corresponding values. Parameters
Return ValuesReturns the combined array, FALSE if the number of elements for each array isn't equal or if the arrays are empty. Errors/ExceptionsThrows E_WARNING if keys and values are either empty or the number of elements does not match. Examples
Example #1 A simple array_combine() example
<?phpThe above example will output:
Array
(
[green] => avocado
[red] => apple
[yellow] => banana
)
See Also
|
more
Recently updated
more
Most requested
|