2011/7/6 Дмитрий Степанов
> PHP documentation of static keywords does not unambiguously explain
> behavior
> of "static" variables inside methods in example #1. I believe that in
> example #1 the exactly same instance of function (method) is used
> irregarding of how you call it (X::test() or Y::
>> The second case is referencing the varible of the class.
Maybe you are right. However, I don't really think that there is a true
"reference" to the class var in example #2.
PHP documentation of static keywords does not unambiguously explain behavior
of "static" variables inside methods in examp
I think you are confusing scope visibility level of the variable within
method and the class.
Variable within the method is going to 1 because it was declare within the
test method and there no link to the one declared outside the test method.
The second case is referencing the varible of the cl
3 matches
Mail list logo