Home >Backend Development >PHP Tutorial >Detailed explanation of how to use variable variable names in PHP
Sometimes variable variable names will bring great convenience to programming. That is to say, variable names can be named and used dynamically. Usually variables are named by the following statement:
<?php $a = 'hello'; ?>
Variable variableThe name refers to using the value of a variable as the name of the variable. In the example above, you can set hello to the name of a variable by using two $ signs, like below.
<?php $$a = 'world'; ?>
Through the above two statements, two variables are defined: variable $a, which contains "hello" and variable $hello, which contains "world". Therefore, the output of the following language:
<?php echo "$a ${$a}"; ?>
is exactly the same as the output of the following statement:
<?php echo "$a $hello"; ?>
They both output: hello world.
In order to use the mutable variable name of an array, you need to resolve an ambiguity problem. That is, if you write $$a[1], the parser needs to understand whether you mean to treat $a[1] as a variable, or to treat $$a as a variable. [1] refers to this variable. index. The syntax to resolve this ambiguity is: use ${$a[1]} in the first case and ${$a}[1] in the second case.
ClassProperties can also be accessed through mutable property names. Variable property names are taken from the access scope of the variable in which the call was made. For example, if your expression is like this: $foo->$bar, then the runtime will look for the variable $bar in the local variable scope, and its value will be Will be used as a property name of the $foo object. It can also be used if $bar is an array.
Example 1 Variable variable name
<?php class foo { var $bar = 'I am bar.'; } $foo = new foo(); $bar = 'bar'; $baz = array('foo', 'bar', 'baz', 'quux'); echo $foo->$bar . "n"; echo $foo->$baz[1] . "n"; ?>
The above example will output the following results:
I am bar. I am bar.
Warning
Please note that variable variable name It cannot be used for PHP functions and super global array variables in classes. The variable $this is also a special variable that cannot be dynamically named.
The above is the detailed content of Detailed explanation of how to use variable variable names in PHP. For more information, please follow other related articles on the PHP Chinese website!