//If it doesn't chech if its a normal old type setter ot getter
//Getting and setting with $this->getProperty($optional);
//Getting and setting with $this->setProperty($optional);
为什么要这样使用?我们可以使用正常的功能。
答案 0 :(得分:2)
getter 允许您获取值(读取它), setter 允许您设置值(写出来)
如果你有一个" myVariable"在类中的字段,要从类外部访问此变量,您可以: