美好的一天,PHP,如何使用一個字符作爲變量名?
我目前正試圖弄清楚如何使用存儲在變量中的字符來通過名稱調用另一個變量。例如:
$string = "ABCD";
$A = 10;
echo //Here I want to get $string[0]'s value, which will be A, then echo the value of the variable named after $string[0]'s value, $A. So in other words the output of the echo should be 10.
讓我知道,如果我不清楚的問題。
'回聲$ {$字符串[0]};'? – Darren
echo $$ string [0] – verhie
該邏輯被稱爲變量_的變量_variant,並且@Darren在這裏是正確的。 –