Thank you for your response,
yes the name is not totally related to the message, but this behavior reminds
me of LSB.
However, I found it while using Propel 1.6 on PHP 5.4 with nested_set behavior
and I can tell now that Propel 1.6 + nested_set cannot work on PHP 5.4+ (I
checked on PHP 5.5 and
Hi Keven,
First, I don't see any late static binding being used here. LSB only
applies when you access a static member using the static keyword within a
class method. This code uses static properties but accesses them directly
without going through class methods. Here's an example of LSB:
cla
Hello everybody,
I found a difference between late static binding in PHP 5.3 and PHP 5.4 and I
cannot find any documentation to explain this difference.
Here is some code to show you this difference:
class Foo
{
const MY_CONST = 'The Foo';
static $my_var = self::MY_CONST;
}
clas
3 matches
Mail list logo