W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
(PECL runkit7 >= Unknown)
runkit7_method_remove — 動(dòng)態(tài)刪除給定的方法
runkit7_method_remove(string $class_name, string $method_name): bool
注意: 此函數(shù)不能用來(lái)操作當(dāng)前正常運(yùn)行(或運(yùn)行鏈上)的方法。
class_name
要?jiǎng)h除方法的類(lèi)。
method_name
要?jiǎng)h除的方法的名稱(chēng)。
成功時(shí)返回 true, 或者在失敗時(shí)返回 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'));
?>
以上示例會(huì)輸出:
bar
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: