views:

61

answers:

5

i got a code of 100-200 rules for making a table. but the whole time is happening the same. i got a variable $xm3, then i make a column . next row, i got $xm2 and make column. next row, i got $xm1 and make column.

so my variables are going to $xm3, $xm2, $xm1, $xm0, $xp1, $xp2, $xp3.

is there a way to make a forloop so i can fill $xm and after that a value from the for loop?

A: 

You can do this using variable variables, but usually you're better off doing this sort of thing in an array instead.

If you're positive you want to do it this way, and if 'y' is the value of your counter in the for loop:

${'xm' . $y} = $someValue;
AvatarKava
I don't think you can use variable variables in any other way than `$$var`.
Tgr
This more directly answers the question, but as a developer I strongly urge you opt for the array method suggested by others.
AvatarKava
@Tgr - the updated syntax I posted should work - doesn't make it a good idea, though :)
AvatarKava
+1  A: 

As far as I am aware using different variable names is not possible.

However if you uses arrays so as below

$xm[3] = "";
$xm[2] = "";
$xm[1] = "";
$xm[0] = "";

or just $xm[] = "";

Then you can use a for each loop:

foreach($xm as $v) { echo $v; }

Edit: Just Googled and this is possible using variable names but is considered poor practice. Learn and use arrays!

Pez Cuckow
Variable variables (as they are known) do have some uses. but I agree that using them to emulate array like behaviour is not one of them.
Neil Aitken
When would you want to use them? Just out of interest?
Pez Cuckow
+1  A: 

It is not fully clear what you are asking, but you can do

$xm = 'xm3';
$$xm // same as $xm3

in PHP, so you can loop through variables with similar names. (Which does not mean you should. Using an array is usually a superior alternative.)

Tgr
+1  A: 

In this kind of structure you'd be better off using an array for these kinds of values, but if you want to make a loop to go through them:

for($i = 0; $i <= 3; $i++) {
    $var = 'xm' . $i
    $$var; //make column stuff, first time this will be xm0, then xm1, etc.

}
GSto
A: 

You can easily do something like this:

$base_variable = 'xm';

and then you can make a loop creating on the fly the variables; for example:

for ($i=0; $i<10; $i++)
{
  $def_variable = $base_variable . $i;
  $$def_variable = 'value'; //this is equivalent to $xm0 = 'value'
}
Giovanni Di Milia