标签: php variables
关于语法的一个简单问题。简化:
$testme[0] = "hello"; $v = "me"; echo $test{$v}[0]; //expect this to output "hello"
有没有办法编写上面的最后一行,以便“我”被变量引用?
谢谢!
答案 0 :(得分:6)
使用
echo ${'test' . $v}[0];
代替