Tagged Questions
26
votes
13answers
1k views
Method chaining - why is it a good practice, or not?
Method chaining is the practice of object methods returning the object itself in order for the result to be called for another method. Like this:
...
7
votes
3answers
975 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 ...
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
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);
}
...
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
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
284 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
129 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()
{
...