(PECL runkit7 >= 未知)
runkit7_method_remove — 动态删除给定的方法
class_name
要从中删除方法的类
method_name
要删除的方法的名称
示例 #1 runkit7_method_remove() 示例
<?php
类 Example {
函数 foo() {
返回 "foo!\n";
}
函数 bar() {
返回 "bar!\n";
}
}
// 删除 'foo' 方法
runkit7_method_remove(
'Example',
'foo'
);
echo implode(' ', get_class_methods('Example'));
?>
以上示例将输出
bar