(PHP 5 >= 5.4.0, PHP 7)
ReflectionClass::isCloneable — Returns whether this class is cloneable
public ReflectionClass::isCloneable ( ) : bool
Returns whether this class is cloneable.
This function has no parameters.
Returns true
if the class is cloneable, false
otherwise.
Example #1 Basic usage of ReflectionClass::isCloneable()
<?php class NotCloneable { public $var1; private function __clone() { } } class Cloneable { public $var1; } $notCloneable = new ReflectionClass('NotCloneable'); $cloneable = new ReflectionClass('Cloneable'); var_dump($notCloneable->isCloneable()); var_dump($cloneable->isCloneable()); ?>
The above example will output:
bool(false) bool(true)
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectionclass.iscloneable.php