downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionClass::isFinal> <ReflectionClass::isAbstract
[edit] Last updated: Fri, 14 Jun 2013

view this page in

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)



add a note add a note User Contributed Notes ReflectionClass::isCloneable - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites