dongtang1966 2015-07-30 16:19
浏览 38
已采纳

调用函数时,php extract()关联数组

I have this function:

function extractAvailable($assoc1, $assoc2){
    if($assoc1) extract($assoc1);
    else extract($assoc2);
}

What I expect is to call this function later in the global scope, and have my variables available, like so:

$arr1 = [];
$arr2 = ['one'=>1, 'two'=>'SecondItem'];
extractAvailable($arr1, $arr2);

With the call on extractAvailable(), I need to have the varialbes $one and $two available in the current scope. Obviously, I've got something wrongly figured concerning variable scope use here, 'cause it isn't working. When I try to use the variable, what I get instead is Notice: Undefined variable: one.

How do I get this to work?

  • 写回答

2条回答 默认 最新

  • 普通网友 2015-07-30 16:29
    关注

    If you want them to be available in the global scope, you can use variable variables instead of extract, and specify them as global.

    function extractAvailable($assoc1, $assoc2){
        if($assoc1) {
            foreach ($assoc1 as $key => $value) {
                global $$key;
                $$key = $value;            
            }
        } else {
            foreach ($assoc2 as $key => $value) {
                global $$key;
                $$key = $value;            
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)