What is encapsulation with simple example in php?

前端 未结 14 1483
谎友^
谎友^ 2020-12-08 02:27

What is encapsulation with simple example in php?

14条回答
  •  遥遥无期
    2020-12-08 03:19

    Wrapping up of data inside single unit is called encapsulation. Means class members such as method and properties binds together inside a class to avoid accessibility from outside.This is done by making variables and functions of class private.

提交回复
热议问题