我正在尝试做一个变量变量,但是当我在下面的代码中使用它时它不会工作。
我不断得到:
Notice: Undefined variable: C in C:\web\apache\htdocs\cats-test.php on line 8
这仅在与数组一起使用时才起作用。你能帮我吗?
$Consumer = array(
"a" => "Apparel",
"b" => "Books & Stationary",
);
$cat = "Consumer";
echo $$cat['a']; //I'm trying to make this $Consumer['a'];