我写了一个这样的类:
class config {
private $conf;
public function __call( $confName, $args ){
if ( 0 == count($args) && isset($this->conf[$confName]) ){
return $this->conf[$confName];
}
else {
$this->conf[$confName] = $args[0];
return $this;
}
}
}
和 $conf = new config();
但是我想在输入 $conf-> 时获得建议列表,
有没有理想或不可能做到这一点?