News Feed
Jobs Feed
Sections




News Archive
Brandon Savage's Blog:
A Lesson In Static Methods And Late Static Binding
April 12, 2010 @ 11:10:51

Brandon Savage in his frustrations with the Zend Framework and the "self" keyword in PHP has written up a new post showing how you can use late static binding to work around it.

he problem is, when extended, My_Auth::getInstance() still returns an instance of Zend_Auth. The solution was to duplicate the static method in my My_Auth class, which worked properly. What did I get as a return value? Zend_Auth [...] Why didn't I get an instance of My_Auth instead of Zend_Auth? Well, that's because PHP determines the meaning of the self keyword at compile time, meaning that when you call a function that makes use of it later, you'll get whatever it's been defined to mean when it was compiled.

To remedy the situation he uses late static binding (in PHP 5.3+) by using the "static" keyword like you would use "self" to refer correctly to the current class, not the class it sees at runtime.

0 comments voice your opinion now!
static method latestaticbinding lsb method


blog comments powered by Disqus

Similar Posts

Andrew Podner: Overloading: Create PHP Class Methods on the Fly

Stefan Mischook's Blog: Why build all your pages in PHP?

DevShed: Understanding Static Properties with PHP 5

DevShed: Effects of Wrapping Code in Class Constructs

Lukas Smith's Blog: Remember: be nice to byte code caches


Community Events











Don't see your event here?
Let us know!


introduction opinion code tool framework interview release series testing application community development functional object language unittest zendframework2 podcast example phpunit

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework