$i = 'i';
$arr = array('hi' => 'test');
echo "$arr[h$i]";exit();
What’s the right version to do it without {}?
Say,I know can do it with “{$arr[‘h’ . $i]}”
EDIT
1.inside “”
2.with operation like “.”,i.e,[‘h’ . $i]
3.without {}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you don’t want {}, you’ll need to do it this silly way:
Of course, you could also just do
But I think maybe you oversimplified things for the purposes of your question.