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

Descripción

bool runkit_class_adopt ( string classname, string parentname )

Lista de parámetros

classname

Name of class to be adopted

parentname

Parent class which child class is extending

Valores retornados

Devuelve TRUE si todo se llevó a cabo correctamente, FALSE en caso de fallo.

Ejemplos

Ejemplo 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();
?>

El resultado del ejemplo seria:

Parent Function Output

Ver también

runkit_class_emancipate()

Hosting by: hurra.com
Generated: 2007-01-26 18:00:49