0

我正在使用 PHP5 和方法链接,遵循几个 StackOverflow 示例。我想设置一个只能打印所需属性的通用 show() 方法,请参阅示例:

<?php

class testarea{

  public function set_a(){
    $this->property_a = 'this is a'.PHP_EOL;
    return $this;
  }

  public function set_b(){
    $this->property_b = 'this is b'.PHP_EOL;
    return $this;
  }

  public function show(){
   echo var_dump($this->property_a); // ->... generalize this                                                                                                                     
   return $this;
  }

}

$ta=new testarea();

$ta->set_a()->set_b();
$ta->show();

?>

这呼应了string(10) "this is a "

我想做的是一个通用的 show() 方法,它只显示 theset_a()set_b()方法设置的属性。

可能吗?

4

1 回答 1

1

创建一个私有数组属性:

private $last = NULL;
private $setList = array();

在您的set_a()set_b()使用中:

$this->last = 'line A';
$this->setList['a'] = $this->last;

$this->last = 'line B';
$this->setList['b'] = $this->last;

然后您的show()方法显示为:

foreach ($this->setList as $line) {
  var_dump($line);
}

或者如果您只需要最后一个属性集:

return $this->last;
于 2013-05-15T00:44:10.827 回答