我从我的朋友那里得到了有关可变美元符号的这个PHP问题

可能重复:
$$在PHP中意味着什么?

$ thisvariable和$$这个变量之间有什么不同。 正如你注意到的那样,第一个变量有一个美元符号,而第二个变量有两个美元符号。


$variable是一个变量, $$variable是一个变量变量,

$my_name = "anthony"; // variable $my_name 
echo $my_name; // outputs "anthony"

$a_var = "my_name"; // assigning literal to variable $a_var
echo $$a_var; // outputs "anthony"

这可能有点令人困惑,所以让我们分解一下这个回声调用,

$($a_var)  
   -> $(my_name) 
       -> $my_name = "anthony"

请注意,以上可能不是PHP解释器幕后发生的情况,但它严格地用作说明。

希望这可以帮助。


$thisvariable是一个名为$thisvariable的变量:

$thisvariable = 'Hello';
print $thisvariable; // prints Hello

$$thisvariable这个变量是一个变量变量:

$thisvariable = 'Hello';
$Hello = 'Greetings';
print $$thisvariable; // prints Greetings ($$thisvariable is equivalent to $Hello)

大多数情况下,你应该避免使用变量变量。 它使代码更难理解和调试。 当我看到它是一个红旗,有一些不好的设计。

链接地址: http://www.djcxy.com/p/59089.html

上一篇: i got this PHP question from my friend about variable dollar sign

下一篇: What is the difference between $a and $$a in php?