首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

runkit_method_remove

(PECL runkit >= 0.7.0)

runkit_method_remove - 动态删除给定的方法

描述

代码语言:javascript
复制
bool runkit_method_remove ( string $classname , string $methodname )

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

参数

classname

要删除该方法的类

methodname

要删除的方法的名称

返回值

成功返回TRUE或失败时返回FALSE

例子

Example #1 runkit_method_remove() example

代码语言:javascript
复制
<?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'));

?>

上面的例子将输出:

代码语言:javascript
复制
bar

← runkit_method_redefine

runkit_method_rename →

扫码关注腾讯云开发者

领取腾讯云代金券