are "variable variables" useful in real time scenario? and if they are then what kind of scenarios? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

are "variable variables" useful in real time scenario? and if they are then what kind of scenarios?

please give me any simple example to understand properly. thanks in advance

6th Jul 2016, 8:08 PM
Pravin Sonar
Pravin Sonar - avatar
3 Answers
+ 1
i think you didn't get me. "variable variables" is one of the topic of php which switches its value with another variable (according to me its for no reason). it means suppose there are two boys (Joe and Josh) and if you call Joe then Josh will respond. what is the use of this functionality in real time?
13th Jul 2016, 5:59 AM
Pravin Sonar
Pravin Sonar - avatar
- 1
waht u mind ? mybe php array(): ? oder foreach (); that need php used
11th Jul 2016, 9:23 PM
Shabi Levi
Shabi Levi - avatar
- 2
<?php $test1 = array("age"=>"18", "color"=>"blue"); $test2 = array("age", "color") ; echo $test2 [1].": "; echo $test1["color"]."</br>"; // OUTPUT color: blue ?>
13th Jul 2016, 6:40 AM
Shabi Levi
Shabi Levi - avatar