Jump to content

dynamic variable


arianhojat

Recommended Posts

i was messing with a loop get output a dynamic variable and didnt get the results i expected....

Cutting the loop short, here is basically what i did...
$Page5 = 'yyy';
$i=5;

$dyn = 'Page'.$i; //should be 'Page5'
$$dyn = $$dyn ;// thought it should be $Page5 = 'yyy'; but instead it evaluates to 'Page5', shouldnt the right hand side evaluate to 'yyy'?




kinda ghetto but this works.
$var1 = 'Page'.$i;
$temp = $$var1;
$$var1 = $temp;
Link to comment
https://forums.phpfreaks.com/topic/10450-dynamic-variable/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.