Re: [PHP] Late static binding behaves differently in PHP 5.3 and PHP 5.4

2013-01-24 Thread Keven
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

Re: [PHP] Late static binding behaves differently in PHP 5.3 and PHP 5.4

2013-01-24 Thread David Harkness
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