略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: runkit_class_adopt

2024-05-07

runkit_class_adopt

(PECL runkit >= 0.7.0)

runkit_class_adopt Convert a base class to an inherited class, add ancestral methods when appropriate

说明

runkit_class_adopt ( string $classname , string $parentname ) : bool

参数

classname

Name of class to be adopted

parentname

Parent class which child class is extending

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

范例

Example #1 A runkit_class_adopt() example

<?php
class myParent {
  function 
parentFunc() {
    echo 
"Parent Function Output\n";
  }
}

class 
myChild {
}

runkit_class_adopt('myChild','myParent');
myChild::parentFunc();
?>

以上例程会输出:

Parent Function Output

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.runkit-class-adopt.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3