Design Pattern: Proxy Pattern in PHP
Proxy pattern is used provide a placeholder or surrogate for an original object. Operation performed the proxy, calls operation(s) from the original object. This proxy object existing between the client and the original object to provide security and/or access control and/or additional functionality. This article demonstrates Proxy pattern implementations in PHP.