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, 24 May 2013

view this page in

ReflectionClass::isCloneable

(PHP >= 5.4.0)

ReflectionClass::isCloneableReturns whether this class is cloneable

Descrição

public bool ReflectionClass::isCloneable ( void )

Returns whether this class is cloneable.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns TRUE if the class is cloneable, FALSE otherwise.

Exemplos

Exemplo #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());
?>

O exemplo acima irá imprimir:

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 | stats | sitemap | contact | advertising | mirror sites