全局数组在函数内部声明,但在调用时未显示值

时间:2013-10-26 22:36:57

标签: php arrays global heredoc

我正在构建一个通过调用数组键加载定价的菜单。菜单显示但我无法在价格部分显示值。

我加载了一个关联数组,我希望从函数内部调用它的值。我已经声明了全局范围,并且正在使用heredoc将值添加到表中。我也试图通过封装来调用printMenu()函数。仅当代码未放入功能内时,价格才显示在菜单内。

不知道这里有什么问题。求救!

    printMenu();

    $plain = array(
      "small" => "3.50",
      "medium" => "6.25",
      "large" => "8.00"
    );

    function printMenu() {
      global $plain;
      print <<<HERE
        <table>
          <tr>
           <th>&nbsp;</th>
           <th class = "pSize">Small</th>
           <th class = "pSize">Med</th>
           <th class = "pSize">Large</th>
          </tr>
          <tr>
           <th>Plain</th>
           <td class ="price">$plain[small]</td>
           <td class ="price">$plain[medium]</td>
           <td class ="price">$plain[large]</td>
          </tr>
        </table>
    HERE;
    }

1 个答案:

答案 0 :(得分:1)

在使用全局变量调用函数之前,必须声明变量:

$plain = array(
  "small" => "3.50",
  "medium" => "6.25",
  "large" => "8.00"
);

printMenu();

也许您可以考虑将此变量设置为函数中的参数。检查一下:

function printMenu($argName) {
   var_dump($argName);
}

$plain = array(
  "small" => "3.50",
  "medium" => "6.25",
  "large" => "8.00"
);

printMenu($plain);