runkit7_method_remove

(PECL runkit7 >= 未知)

runkit7_method_remove动态删除给定的方法

说明

runkit7_method_remove(string $class_name, string $method_name): bool

注意: 此函数不能用于操作当前运行(或链式)方法。

参数

class_name

要删除方法的类

method_name

要删除的方法的名称

返回值

成功时返回 true,失败时返回 false

范例

范例 #1 runkit7_method_remove() 范例

<?php
class Example {
function
foo() {
return
"foo!\n";
}

function
bar() {
return
"bar!\n";
}
}

// 删除 'foo' 方法
runkit7_method_remove(
'Example',
'foo'
);

echo
implode(' ', get_class_methods('Example'));

?>

上面的例子将输出

bar

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top