PHP - 如何连接2 php var用于创建新的php var?
我希望将$test
与$i
连接以创建新的php var。
<?PHP
$i = "5";
$test_$i = "WELCOME";
echo $test_5;
?>
答案 0 :(得分:2)
您必须使用variable variables:
<?php
$i = "5";
${'test_' . $i} = "WELCOME";
echo $test_5; // echoes "WELCOME"
?>