2016-12-02 161 views
0

端添加數i有這個變量汽車在可變

$n= ""; 

它可以是1或2個例如:$ N = 「1」;或$ n =「2」;

,所以我想$號改爲$數字1或$ NUMBER2所以它會得到1或2個從$ N

$live = ($number1-$r3)/60; 

,所以我已經試過這樣的,但不工作

$n= "1"; 
$lv = "$number".$n;  
    $live = ($lv-$r3)/60; 

所以在這種情況下它需要是$ live =($ number1- $ r3)/ 60;

我不知道是否有辦法做到這一點,如果u didnt understeand問題u能低於

+0

你所講的'$ number'開始通過談論'$ N'和光潔度請邏輯 – RiggsFolly

+0

in $ ni添加$ number後需要的號碼 n和號碼不同 – arpak

回答

0

註釋一個號碼添加到PHP中的變量,你可以做這樣的事情的結尾:

<?php 
$theVariableName="\$number"; 
for ($i=0; $i < 10; $i++) { 
    echo "theVariableName is now:".$theVariableName."<br />";  //debug text 
    echo "now we add a number.<br />";       //debug text 
    $theVariableName="\$number".$i;        //actual solution 
    echo "New theVariableName is now:".$theVariableName."<br />"; //debug text 
    echo "<br /><br />";           //debug text 
} 
?> 

最終結果是輸出這樣的:

theVariableName現在是:$產品數
現在我們增加了許多。
新theVariableName現在是:$ NUMBER1

...

theVariableName現在是:$ number8
現在我們增加了許多。
新theVariableName現在是:$ number9

1
${'number' . $n} 

這將是$數字1或$ NUMBER2

+0

您自己做出了答案。你的意思是你有解決方案併發布答案? – Perumal

+0

是的,這是有效的 – arpak