+ 2

Could someone explane me when use Variable Variables?

it is my first steps in PHP and Variable Variables is confuse me, it is a concept that I don't see in other language. An example would help me.

19th May 2017, 4:37 PM
Jorge Daniel Lopez Irusta
Jorge Daniel Lopez Irusta - avatar
1 Antwort
+ 2
for example, if you have a very long variable name that you want to shorten for frequent use in your script, then you could use this technique to save yourself some typing, in code: $your_name_is = 'Jorge Daniel Lopez Irusta'; $name = 'your_name_is'; echo $name;
19th May 2017, 6:21 PM
Jaineshkumar Patel
Jaineshkumar Patel - avatar