PHP Class 实现“复读机” 作者: Chuwen 时间: 2019-04-11 分类: PHP > ### 水平有限,不知道叫什么,但有时能够用得到,备份一下了 ```php word = $word; } public function getWord() { return $this->word; } } $Repeat = new Repeat(); $Repeat->setWord('我是复读机');//设置复读 echo $Repeat->getWord();//输出结果 ``` 标签: PHP