(PECL runkit7 >= 未知)
runkit7_method_remove — 动态删除给定的方法
class_name
要删除方法的类
method_name
要删除的方法的名称
范例 #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