Jump to content

Disallow cloning in PHP?


Vlades

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/285584-disallow-cloning-in-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.