我有一个var.php,连接到数据库,并从那里读取一些数据:
while($row = mysqli_fetch_assoc($result)) {
echo "$".$row["name"]. " = " . $row["value"]. ";<br>";
}
,结果如下:
$VAR1 = 3.00000;
$VAR2 = 5.00000;
$VAR3 = 8.00000;
$VAR4 = 9.00000;
我如何在另一个php中嵌入这个php(使用echo或include或require),它会像变量一样工作吗? (抱歉我的英语不好:()
答案 0 :(得分:1)
你应该看看变量变量(http://php.net/manual/en/language.variables.variable.php)。
对于你的例子:
while($row = mysqli_fetch_assoc($result))
{
$$row["name"] = $row["value"];
}