DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Ninging It
I love http://www.ning.com/ - and I fell in love with chaining whole bunches of objects together.
class Foo {
function transform() {
//Some actual code
return $this;
}
function transform2() {
//Some actual code
return $this;
}
}
$f = new Foo();
$f->transform()->transform2()->transform();
Concise!





Comments
Snippets Manager replied on Fri, 2006/02/10 - 8:57pm