Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to build multi oop functions in PHP5

Hey,

I've seen this kind of code in a couple of forum systems but I can't find any examples like this:

$this->function()->anotherfunction();

You can see a similar example in PDO:

$pdo->query($sqlQuery)->fetch();

I don't know how this type of coding is called in PHP and thus I can't get on looking for any tutorials and examples.

share|improve this question

marked as duplicate by cHao, Wrikken, Matt Ball, starblue, Graviton Sep 16 '10 at 1:54

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 7 down vote accepted

This is called method chaining. An example would be the following. Notice we are returning the current object.

class Example
{
   function test1($var)
   {
      return $this;
   }
   function test2($var)
   {
      return $this;
   }
}

$obj = new Example();
$obj->test1('Var')->test2(543)->test1(true);
share|improve this answer
Thanks for sharing this valuable information :) – tftd Sep 14 '10 at 23:27

You just make sure a chainable method returns an object reference, and you can chain another method call onto the result.

You can return $this as @Tim Cooper shows, or you can return a reference to another different object:

class Hand
{
  protected $numFingers = 5;
  public function countFingers() { return $this->numFingers; }
}

class Arm
{
  protected $hand;
  public function getHand() { return $this->hand; }
}

$n = $body->getLeftArm()    // returns object of type Arm
          ->getHand()       // returns object of type Hand 
          ->countFingers(); // returns integer

The PDO example you show uses two different object types. PDO::query() instantiates and returns a PDOStatement object, which in turn has a fetch() method.

This technique can also be used for a fluent interface, particularly when implementing an interface for domain-specific language. Not all method chains are fluent interfaces, though.

See what Martin Fowler wrote about fluent interfaces in 2005. He cites Eric Evans of Domain-Driven Design fame as having come up with the idea.

share|improve this answer
...and being a programmer, having your fingers protected is important for your livelihood ;) – Wrikken Sep 14 '10 at 23:21
This explains pretty much everything I had to know. Thank you :) – tftd Sep 14 '10 at 23:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.