php获取变量的值,在PHP中获取变量值

标签:php

我有变量$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 "

$Label";

}

但不是获取$CV1的值,而是$CV2.我正在获取变量名称本身作为输出. $CV1,$CV2等

解决方法:

您可以使用:

$CFV = ${'CV'.$i};

标签:php

来源: https://codeday.me/bug/20191127/2075819.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值