Skip to content
Advertisement

Variable variables in PHP – What is their purpose?

In PHP there’s a functionality officially called “Variable Variables” where one can assign variable variables. A variable variable takes the value of one variable as the name for a new variable! For example:

JavaScript

The first variable $name contains the value ‘Joe’, while the second is variable named $Joe with the value ‘Smith’. Take into account that PHP variables are case-sensitive!

I’ve never used this functionality and do not see the purpose for that. Could someone explain to me where this functionality could be exploited as a good practise?

Advertisement

Answer

Sometimes we need software that is extremely flexible and that we can parametrize. You have to prepare the whole thing, of course, but part of it just comes from user input, and we have no time to change the software just because the user needs a new input.

With variable variables and variable functions you can solve problems that would be much harder to solve without them.

Quick Example:

Without variable variables:

JavaScript

With variable variables

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement