Example is a variable declaration within a function:
global $$link;
What does $$ mean?
|
|
A syntax such as
You will get the following output :
EDIT after @Jhonny's comment : Doing a So, let's try this portion of code :
And here's the output I get :
So, I would say that, yes, you can do |
|||||||||||||||||||
|
|
The inner $ resolves the a variable to a string, and the outer one resolves a variable by that string. So, consider this example
The variable:
would equal the string "foo" |
|||
|
|
It's a variable's variable.
|
|||
|
|
|
It creates a dynamic variable name. E.g.
(also known as variable variable) |
|||
|
|
|
It evaluates the contents of one variable as the name of another. Basically it gives you the variable whose name is stored in $link. |
|||
|
|
|
I do not want to repeat after others but there is a risk using
So use it with head. :) |
|||||
|
|
|
|||
|