PHP链接方法

时间:2013-03-06 07:58:59

标签: php methods chaining

class AAA

{

    function getRealValue($var)
    {
        $this->var = $var;
        return $this;
    }

    function asString()
    {
        return (string) $this->var;
    }

}

$a = new AAA;
$a->getRealValue(30); 
$a->getRealValue(30)->asString(); 

因此,当我拨打$ a-> getRealValue(30)时,它应该返回30,

但是当我调用$ a-> getRealValue(30) - > asString()时,它应该返回'30'作为字符串'。

谢谢

2 个答案:

答案 0 :(得分:6)

  

因此,当我调用$ a-> getRealValue(30)时,它应该返回30,但是当我调用$ a-> getRealValue(30) - > asString()时,它应该返回'30'作为字符串'。

这是不可能的(yet)。当getRealValue返回标量值时,您无法在其上调用方法。

除此之外,你的课对我来说没什么意义。您的方法称为getRealValue,但它接受一个参数,设置该值。所以它应该被称为setRealValue。方法链接在一边,你可能在寻找ValueObject吗?

class Numeric
{
    private $value;

    public function __construct($numericValue)
    {
        if (false === is_numeric($numericValue)) {
            throw new InvalidArgumentException('Value must be numeric');
        }
        $this->value = $numericValue;
    }

    public function getValue()
    {
        return $this->value;
    }

    public function __toString()
    {
        return (string) $this->getValue();
    }
}

$fortyTwo = new Numeric(42);
$integer = $fortyTwo->getValue(); // 42
echo $fortyTwo; // "42"

答案 1 :(得分:3)

不正确,$ a-> getRealValue(30)将返回对象$ a而非值。但asString将以字符串格式返回值。

通常当你想要得到这样的东西时,你会这样做:

$a->getRealValue(30)->get();
//Or
$a->getRealValue(30)->getAsString();