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

runkit_class_emancipate

(no version information, might be only in CVS)

runkit_class_emancipate --  Convert an inherited class to a base class, removes any method whose scope is ancestral

说明

bool runkit_class_emancipate ( string classname )

参数

classname

Name of class to emancipate

返回值

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

例子 1. A runkit_class_emancipate() example

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

myChild::parentFunc();
runkit_class_emancipate('myChild');
myChild::parentFunc();
?>

上例将输出:

Parent Function Output
Fatal error: Call to undefined function:  parentFunc() in example.php on line 12




<runkit_class_adoptrunkit_constant_add>
 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