[Solved] what is a variable with two $ sign ? $$ myVar [duplicate]


$var="something";
$$var="lol";

echo $something will output "lol"

it’s a variable variable.

solved what is a variable with two $ sign ? $$ myVar [duplicate]