Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Alex Netkachov's Blog:
PHP fluent API tips
Oct 29, 2007 @ 12:57:00

In response to Travis Swicegood's post about fluent APIs, Alex Netkachov has added some of his own examples to the topic from the Zend Framework and the popular Javascript library, jQuery.

In his recent post Travis Swicegood is talking about the "Fluent API". This kind of API is very popular in scripting languages and I use it during my work with Zend Framework or jQuery projects. Another good example of such technique is Document Object Model API.

His examples show the method chaining that's the hallmark of fluent interfaces. Unfortunately, there's no good way to just make an object and call a fluent interface on it in PHP, so Alex suggests a simple little wrapper (that just returns the object) to make it easier.

tagged: fluent api tip zendframework jquery wrapper object fluent api tip zendframework jquery wrapper object

Link:


Trending Topics: