Is it really that wrong not using setters and getters?

前端 未结 7 899
谎友^
谎友^ 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:30

    Did you consider to use magic functions __set/__get? Using them you can easily merge all getter/setter function in only 2 functions!

提交回复
热议问题