Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
703 views
in Technique[技术] by (71.8m points)

creating variable name by concatenating strings in php

I have a file named questions.php with an array as follows :

$question12 = array("Which is the tallest mountain","Mt Everest");

I am including this file in another file as follows :

require_once('questions.php');
$var = 12;
$question = '$question'.$var.'[0]';
echo $question;

The above code just outputs the following string (not the contents of the variable):

$question12[0]

But I want the variable $question to contain the string present in $question12[0].

How do I accomplish this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

1 Answer

0 votes
by (71.8m points)

Variable variable is not recommended, but the answer is below:

$question = ${'question'.$var}[0];

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
...