php 项目程序如何将数组转化为一组变量?

2023-02-17 奥古斯宏

extract和compact函数。

extract将数组导入为众多变量,数组的键作为变量名,数组的值作为变量值。

例如:

$size = "large";
$var_array = array("color" => "blue",
                   "size"  => "medium",
                   "shape" => "sphere");
extract($var_array, EXTR_PREFIX_SAME, "wddx");

可以通过传入第二个参数,处理当变量有冲突时如何处理。当遇到冲突时,可以增加前缀,此时可以传入第三个参数作为前缀。

compact刚好相反,将变量组成数组。

例如:

<?php
$city  = "San Francisco";
$state = "CA";
$event = "SIGGRAPH";

$location_vars = array("city", "state");

$result = compact("event", $location_vars);
print_r($result);

版权声明:本文由phpreturn.com(PHP武器库官网)原创和首发,所有权利归phpreturn(PHP武器库)所有,本站允许任何形式的转载/引用文章,但必须同时注明出处。

最近浏览
IP用户:152.53.*.*
22 小时前 Chrome Windows 10
IP用户:51.222.*.*
4 天前 aHrefs Bot
IP用户:3.143.*.*
4 天前 Generic Bot
IP用户:47.79.*.*
5 天前 Microsoft Edge Windows 10
IP用户:14.155.*.*
10 天前 Chrome Mobile Android 11
IP用户:106.8.*.*
12 天前 Generic Bot
IP用户:188.165.*.*
14 天前 MJ12 Bot
IP用户:114.119.*.*
14 天前 Petal Bot
IP用户:175.155.*.*
23 天前 Internet Explorer Windows 7
IP用户:114.119.*.*
23 天前 Petal Bot
IP用户:220.181.*.*
28 天前 Baidu Spider
IP用户:115.226.*.*
29 天前 Internet Explorer Windows 7
累计浏览次数:1103
评论
点击登录
phpreturn,PHP武器库,专注PHP领域的项目和资讯,收录和介绍PHP相关项目。
最近浏览 点击登录
累计浏览次数:202562
一周浏览次数:1704
今日浏览次数:62

本站所有权利归 phpreturn.com 所有

举报/反馈/投稿邮箱:phpreturn@ulthon.com

鲁ICP备19027671号-2