merge two arrays one as key to another php
// two arrays one become keys and second becomes values
array_combine ( array $keys , array $values );
merge two arrays one as key to another php
// two arrays one become keys and second becomes values
array_combine ( array $keys , array $values );
php array
<?php
$array = array(
"foo" => "bar",
42 => 24,
"multi" => array(
"dimensional" => array(
"array" => "foo"
)
)
);
var_dump($array["foo"]);
var_dump($array[42]);
var_dump($array["multi"]["dimensional"]["array"]);
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us