Tagged Questions

7
votes
3answers
983 views

PHP method chaining?

I am using PHP5, and heard of a new featured in object-oriented approach, called method chaining. Does any one know what it is? I want to know how to implement method chaining using PHP5 with ...
7
votes
3answers
801 views

PHP: How to chain method on a newly created object?

I would like to know whether there's a way to chain methods on a newly created object in PHP? Something like: class Foo { public function xyz() { ... return $this; } } $my_foo = new ...
5
votes
5answers
2k views

Chaining Static Methods in PHP?

Is it possible to chain static methods together using a static class? Say I wanted to do something like this: $value = TestClass::toValue(5)::add(3)::subtract(2)::add(8)::result(); . . . and ...
3
votes
2answers
88 views

PHP array references; holding references in an array for later use

I'm trying to hold onto a variable reference for later use. Not certain this is even possible, but I'm hoping I can initialize an array element, and reference it with a variable. Then, set the value ...
3
votes
5answers
593 views

PHP OOP: Method Chaining

I have the following code, <?php class Templater { static $params = array(); public static function assign($name, $value) { self::$params[] = array($name => $value); } ...
3
votes
1answer
173 views

Detecting end of method chain in PHP?

I cannot find a simple example about my question above: how can i detect the end of a method chain? I'm just looked Zend_Db_Select for example but this one is too complex for this simple question i ...
3
votes
5answers
309 views

PHP Method Chains - Reflecting?

Is it possible to reflect upon a chain of method calls to determine at what point you are in the chain of calls? At the very least, is it possible to discern whether a method is the last call in the ...
2
votes
3answers
99 views

PHP method chaining

So i was wondering if there is a way to method chain, when the initial method is a static function. Here is what I mean: class foo { public static function a() { ...
2
votes
3answers
261 views

PHP method chaining benefits?

Still on the PHP-OOP training wheels, this question may belong on failblog.org. =) What are the benefits of method chaining in PHP? I'm not sure if this is important, but I'll be calling my method ...
1
vote
2answers
117 views

PHP DOM, method chaining

I have the following code-line, whereas the first notation does what it should (adding an XML-element and its content to the DOM), but not if I chain the methods. /** * @var string $key * @var ...
1
vote
2answers
161 views

PHP Chaining… I just can't get it!

I'm trying to create a chaining function for working with strings that are returned from an XML file. 1 original string may have multiple replacements, some of which come from the XML file. Here is ...
1
vote
2answers
54 views

Simple error checking in PHP class function chaining?

I've found some limited use in chaining class functions, say $class->setUser('foo')->getInfo() (bad example) although am having trouble understanding how to handle any errors that arise from one ...
1
vote
12answers
285 views

PHP: Class property chaining in variable variables

So, I have a object with structure similar to below, all of which are returned to me as stdClass objects $person->contact->phone; $person->contact->email; ...
1
vote
4answers
84 views

PHP: Prevent chained method from returning?

I am having some headaches regarding method chaining for a quite simple PHP class that returns a value, which sometimes need to go through a decryption process: $dataset = new Datacontainer; $key = ...
1
vote
2answers
108 views

PHP: Method chaining with shared methods

Here's something that I've been thinking about for some time. I want to chain together a set of methods like in the below shown example. The concept of method chaining is no brainer, but what I want ...
1
vote
2answers
130 views

How to build multi oop functions in PHP5

I have a question about OOP in PHP5. I have seen more and more code written like this: $object->function()->first(array('str','str','str'))->second(array(1,2,3,4,5)); But I don't know how ...
1
vote
1answer
379 views

Break method chaining in php

I am using method chaining for my class structure. So my problem is that , how could i break my chain when error occurred in some function. Below is my code: <?php class demo { ...
0
votes
3answers
72 views

Method chanining and re-use of same class

I have the following class: class DB { private $name; public function load($name) { $this->name = $name; return $this; } public function get() { return ...
0
votes
2answers
65 views

How to invoke a method statically?

<?php class Popular { public static function getVideo() { return $this->parsing(); } } class Video extends Popular { public static function parsing() { ...
0
votes
2answers
111 views

How to make this in php? [closed]

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: ...
-1
votes
2answers
62 views

PHP: Namespace resolution in object method chains

We use method chaining in several of our core systems. We're trying to namespace some of those systems away from our modules. However I'm having trouble getting any kind of namespace resolution with ...