将关联数组转换为由键命名的单个变量

发布于 2024-10-22 08:48:36 字数 232 浏览 1 评论 0原文

我有以下格式的数组。我想将其转换为另一种格式,如下所示。

Array
(
 [b2] => 2
 [b3] => 8
 [b4] => 2
 [b5] => 4
)

是否可以将 key 转换为 PHP 变量并将其值自动分配给变量?是否可以?

$b2 = 2;
$b3 = 8;
$b4 = 2;
$b5 = 4;

I have array in following format. I want to convert it into another format like below.

Array
(
 [b2] => 2
 [b3] => 8
 [b4] => 2
 [b5] => 4
)

Is it possible key is converted into PHP variables and its value automatically assigned to variables? Is it possible?

$b2 = 2;
$b3 = 8;
$b4 = 2;
$b5 = 4;

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

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

发布评论

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

评论(2

淡淡離愁欲言轉身 2024-10-29 08:48:36

看起来你想要 extract()

looks like you want extract()

提赋 2024-10-29 08:48:36

您正在寻找 extract() 函数。您将要提取的数组传递到当前作用域中,仅此而已。请注意,使用此功能时应非常小心;为了安全起见,请传递 EXTR_SKIP 作为第二个参数,以防止覆盖现有变量,毕竟您不会想要 $_SESSION$_SERVER 之类的变量代码> 被包含恶意数据的数组限制...

You're looking for the extract() function. You pass in the array you want to extract into the current scope, and that's it. Mind though that you should be very careful when you use this function; for safety, pass EXTR_SKIP in as the second argument to prevent overwriting existing variables, after all you wouldn't want the likes of $_SESSION or $_SERVER throttled by an array with malicious data...

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