将两个字符串数组组合成一个关联数组

发布于 2024-11-03 05:29:23 字数 182 浏览 3 评论 0原文

我有两个数组。比如:

熊,王子,狗,葡萄牙,熊,小丑,王子,...

第二个:

45, 67, 34, 89, ...

I想要将第一个数组中的字符串键转换为变量并将它们设置为相等 到第二个数组中的数字。

是否可以?

I have two arrays. Like:

Bear, prince, dog, Portugal, Bear, Clown, prince, ...

and a second one:

45, 67, 34, 89, ...

I want to turn the string keys in the first array into variables and set them equal
to the numbers in the second array.

Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最美的太阳 2024-11-10 05:29:23
extract(array_combine($arrayKeys, $arrayValues));

http://php.net/array_combine
http://php.net/manual/en/function.extract.php

我建议您将值保留在数组中,但用可变变量淹没您的命名空间并不是一个好主意。

extract(array_combine($arrayKeys, $arrayValues));

http://php.net/array_combine
http://php.net/manual/en/function.extract.php

I'd recommend you keep the values in an array though, it's rarely a good idea to flood your namespace with variable variables.

つ低調成傷 2024-11-10 05:29:23

尝试使用 array_combine :-

<?php
$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);

print_r($c);
?>

输出:-

Array (
    [green]  => avocado
    [red]    => apple
    [yellow] => banana 
    )

循环遍历此数组并创建变量对于每个键值:-

foreach($c as $key => $value) {
    $key = $value;
}

现在,您可以打印变量,例如:-

echo $green." , ".$red." , ".$yellow;

希望这有帮助。谢谢。

Try using array_combine :-

<?php
$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);

print_r($c);
?>

Output:-

Array (
    [green]  => avocado
    [red]    => apple
    [yellow] => banana 
    )

Loop through this array and create variable for each key value:-

foreach($c as $key => $value) {
    $key = $value;
}

Now, you can print the variables like:-

echo $green." , ".$red." , ".$yellow;

Hope this helps. Thanks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文