将两个字符串数组组合成一个关联数组
我有两个数组。比如:
熊,王子,狗,葡萄牙,熊,小丑,王子,...
第二个:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://php.net/array_combine
http://php.net/manual/en/function.extract.php
我建议您将值保留在数组中,但用可变变量淹没您的命名空间并不是一个好主意。
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.
尝试使用 array_combine :-
输出:-
循环遍历此数组并创建变量对于每个键值:-
现在,您可以打印变量,例如:-
希望这有帮助。谢谢。
Try using array_combine :-
Output:-
Loop through this array and create variable for each key value:-
Now, you can print the variables like:-
Hope this helps. Thanks.