略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ReflectionClass::isCloneable

2024-04-28

ReflectionClass::isCloneable

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

ReflectionClass::isCloneable返回了一个类是否可复制

说明

public ReflectionClass::isCloneable(): bool

返回了这个类是否可复制。

参数

此函数没有参数。

返回值

如果这个类可以复制返回 true,否则返回 false

范例

示例 #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 noteadd a note

User Contributed Notes 2 notes

up
1
xxxargonxxx at gmail dot com
2 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
5 years ago
This does not work for many of core-classes, just like most other reflection methods.

官方地址:https://www.php.net/manual/en/reflectionclass.iscloneable.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3