PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<Runkit_Sandboxrunkit_class_emancipate>
Last updated: Mon, 16 Jul 2012

runkit_class_adopt

(no version information, might be only in CVS)

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

说明

bool runkit_class_adopt ( string classname, string parentname )

参数

classname

Name of class to be adopted

parentname

Parent class which child class is extending

返回值

如果成功则返回 TRUE,失败则返回 FALSE

例子 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




<Runkit_Sandboxrunkit_class_emancipate>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST