Hello,
Is there any way to disallow the use of "clone " for an object?
What I mean is, let's say I have a class named "user"
I am able to clone the object ;
$student = new user();
$teacher = clone $student;
Is there any keyword that does not allow me to clone the "$student" object?
Thank you in advance
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.