ReflectionClass
PHP Manual

ReflectionClass::isCloneable

(PHP >= 5.4.0)

ReflectionClass::isCloneableReturns whether this class is cloneable

Opis

public bool ReflectionClass::isCloneable ( void )

Returns whether this class is cloneable.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns TRUE if the class is cloneable, FALSE otherwise.

Przykłady

Przykład #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());
?>

Powyższy przykład wyświetli:

bool(false)
bool(true)


ReflectionClass
PHP Manual