PHP8 runkit7_method_remove — 动态删除给定的方法
(PECL runkit7 >= Unknown)
runkit7_method_remove — 动态删除给定的方法
说明
runkit7_method_remove(string $class_name, string $method_name): bool
注意: 此函数不能用来操作当前正常运行(或运行链上)的方法。
参数
class_name
要删除方法的类。
method_name
要删除的方法的名称。
返回值
成功时返回 true, 或者在失败时返回 false。/
示例
示例 #1 runkit7_method_remove() example
<?php
class Example {
function foo() {
return "foo!\n";
}
function bar() {
return "bar!\n";
}
}
// Remove the 'foo' method
runkit7_method_remove(
'Example',
'foo'
);
echo implode(' ', get_class_methods('Example'));
?>
以上示例会输出:
bar
参见
- runkit7_method_add() - 动态地向给定类添加新方法。
- runkit7_method_copy() - 从一个类复制方法到另一个类。
- runkit7_method_redefine() - 动态地更改给定方法的代码。
- runkit7_method_rename() - 动态地更改给定方法的名称。
- runkit7_function_remove() - 移除函数定义。