ReflectionClass::isCloneable
ReflectionClass::isCloneable
(PHP >= 5.4.0)
ReflectionClass::isCloneable - 返回此类是否可复制
描述
public bool ReflectionClass::isCloneable ( void )
返回此类是否可复制。
参数
该函数没有参数。
返回值
返回TRUE
如果类是可复制的,否则FALSE
。
例子
Example#1 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()
?>
上面的例子将输出:
bool(false)
bool(true)
← ReflectionClass::isAnonymous
ReflectionClass::isFinal →