关于变量的死简单PHP问题

时间:2012-06-05 20:45:35

标签: php variables

关于语法的一个简单问题。简化:

$testme[0] = "hello";
$v = "me";
echo $test{$v}[0]; //expect this to output "hello"

有没有办法编写上面的最后一行,以便“我”被变量引用?

谢谢!

1 个答案:

答案 0 :(得分:6)

使用

echo ${'test' . $v}[0];

代替