duanqiao2006 2013-07-09 14:48
浏览 68
已采纳

为什么在尝试解析多维数组时会得到“未定义的变量”?

I'm trying to retrieve an item from a multi-dimensional array through a string that describes the path into the array (like first.second.third).

I've chosen the approach as shown here (also available on ideone):

<?php
    // The path into the array
    $GET_VARIABLE = "a.b.c";
    // Some example data
    $GLOBALS["a"]= array("b"=>array("c"=>"foo"));

    // Construct an accessor into the array
    $variablePath = explode( ".", $GET_VARIABLE );
    $accessor = implode( "' ][ '", $variablePath );
    $variable = "\$GLOBALS[ '". $accessor . "' ]";

    // Print the value for debugging purposes (this works fine)
    echo $GLOBALS["a"]["b"]["c"] . "
";
    // Try to evaluate the accessor (this will fail)
    echo $$variable;
?>

When I run the script, it will print two lines:

foo
PHP Notice:  Undefined variable: $GLOBALS[ 'a' ][ 'b' ][ 'c' ] in ...

So, why does this not evaluate properly?

  • 写回答

4条回答 默认 最新

  • duanao2688 2013-07-09 14:55
    关注

    I think the $$ notation only accepts a variable name (ie. the name of a variable). You are actually trying to read a variable named "$GLOBALS[ 'a' ][ 'b' ][ 'c' ]", which does not exist.

    As an alternative ($GET_VARIABLE seems to be your input string), you could try this:

    $path = explode('.', $GET_VARIABLE);
    echo $GLOBALS[$path[0]][$path[1]][path[2]];
    

    Wrap this in a suitable loop to make it more dynamic; it seems to be trivial.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样