what is Object Cloning in php?

后端 未结 5 1637
一个人的身影
一个人的身影 2020-11-30 23:26

Can someone explain me

  • what is Object Cloning in php?

  • When should i use clone keyword in php?

5条回答
  •  渐次进展
    2020-12-01 00:21

    Object Cloning, in terms of PHP 5, is what is known as a "shallow copy". It then calls the __clone() method on the object being cloned.

提交回复
热议问题