Php/docs/reflectionclass.iscloneable

提供:Dev Guides
< Php
移動先:案内検索

ReflectionClass::isCloneable

(PHP 5 >= 5.4.0, PHP 7)

ReflectionClass::isCloneableこのクラスがクローン可能かどうかを返す


説明

public ReflectionClass::isCloneable ( ) : bool

このクラスがクローン可能かどうかを返します。


パラメータ

この関数にはパラメータはありません。


返り値

このクラスがクローン可能である場合に true、そうでない場合に false を返します。


例1 ReflectionClass::isCloneable() の基本的な使用例

<?phpclass 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)