runkit_method_remove
(PECL runkit >= 0.7.0)
runkit_method_remove - 动态删除给定的方法
描述
bool runkit_method_remove ( string $classname , string $methodname )
注意:此函数不能用于操作当前正在运行的(或链接的)方法。
参数
classname
要删除该方法的类
methodname
要删除的方法的名称
返回值
成功返回TRUE
或失败时返回FALSE
。
例子
Example #1 runkit_method_remove() example
<?php
class Example {
function foo() {
return "foo!\n";
}
function bar() {
return "bar!\n";
}
}
// Remove the 'foo' method
runkit_method_remove(
'Example',
'foo'
);
echo implode(' ', get_class_methods('Example'));
?>
上面的例子将输出:
bar
← runkit_method_redefine
runkit_method_rename →
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com