ReflectionClass::isCloneable

(PHP >= 5.4.0)

ReflectionClass::isCloneableReturns whether this class is cloneable

Опис

public bool ReflectionClass::isCloneable ( void )

Returns whether this class is cloneable.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns TRUE if the class is cloneable, FALSE otherwise.

Приклади

Приклад #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());
?>

Наведений вище приклад виведе:

bool(false)
bool(true)

add a note add a note

User Contributed Notes 2 notes

up
1
xxxargonxxx at gmail dot com
4 years ago
I wonder how this method decides of is it clonable or not. There is no explanation.
up
-4
php at abiusx dot com
7 years ago
This does not work for many of core-classes, just like most other reflection methods.
To Top