私は変数$CV1
を持っています$CV2
、、$CV3
... PHPでwhileループ内でこれらの変数の値を取得するにはどうすればよいですか?以下は私のコードです
$CV1=$fetch->Custom_field1;
$CV2=$fetch->Custom_field2;
$CV3=$fetch->Custom_field3;
$CV4=$fetch->Custom_field4;
$query=mysql_query("select * from customfields where CustomField like '%Invoice%' and CustomLabel != ''");
while($get=mysql_fetch_object($query))
{
$i++;
$Label=$get->CustomLabel;
$CFV='$CV'.$i;
echo "<tr><td>$Label</td><td><input type='text' name='custom_field$i' value='$CFV'></td></tr>";
}
ただし、の値を取得する代わりに$CV1
、$CV2
。変数名自体を出力として取得しています。$CV1
、、$CV2
など。