Is it really that wrong not using setters and getters?

前端 未结 7 912
谎友^
谎友^ 2020-12-03 07:51

I\'m kind of new in PHP. For some reason in other types of programming languages like JAVA I have no problem with using setters and getters for every single variable, but wh

7条回答
  •  日久生厌
    2020-12-03 08:38

    The point of getters or setters is that you can still add logic to your modifications of the field in one place instead of everyplace you want to modify or retrieve the field. You also gain control at class level what happens with the field.

提交回复
热议问题