(PECL)
Name of class to be adopted
Parent class which child class is extending
如果成功则返回 TRUE,失败则返回 FALSE。
例子 1. A runkit_class_adopt() example
<?phpclass myParent { function parentFunc() { echo "Parent Function Output\n"; }}class myChild {}runkit_class_adopt('myChild','myParent');myChild::parentFunc();?>
上例将输出:
Parent Function Output