본문으로 바로가기
$txt1 = 'A';
$txt2 = 'B';
$txt3 = 'C';

for ($i=1; $i<=3; $i++){
    $varKey = 'txt' . $i;
    echo ${$varKey};
}