News Feed
Jobs Feed
Sections




News Archive
Matthew Weier O'Phinney's Blog:
Proxies in PHP
July 06, 2011 @ 08:10:08

In a new blog post Matthew Weier O'Phinney has taken a look at proxy objects (the Proxy design pattern) and how it differs from some of the other popular patterns.

Of the other patterns mentioned, the one closest to the Proxy is the Decorator. In the case of a Decorator, the focus is on adding functionality to an existing object -- for instance, adding methods, processing input before delegating to the target object, or filtering the return of a method from a target object.

Proxies stand in for objects and have several benefits for your application that may or may not need all of the overhead a full object could cause. Matthew focuses on one benefit in particular - consuming and controlling access to another object. He sets up a problem of wanting to use properties/methods on objects that aren't exposed directly (like a protected method). His solution is a proxy layer class on top of the original object. He includes a few "gotchas" to look out for when using this technique including overwriting all necessary methods and copying over all of the needed properties.

0 comments voice your opinion now!
proxy designpattern object access method property


blog comments powered by Disqus

Similar Posts

Jeff Moore's Blog: Let Your Properties be Properties

Stubbles Blog: Dependency Injection for static methods

Chris Jones' Blog: Upgrading PHP Web Applications with Minimum Downtime using Oracle Editioning

DevShed: Using Visitor Objects with MySQL Data Sets in PHP 5

Lukas Smith's Blog: Brideing the rift between PEAR_Error and PEAR_Exception


Community Events











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


composer development zendframework2 framework example database language podcast object community introduction release code series testing interview functional opinion tool conference

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