Dans :
Fonctions PHP
Concepts PHP
Fonctions MySQL
Fonctions HTML
Forum PHP/MySQL
Cours PHP/MySQL
Scripts PHP/MySQL
Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.
<?phpclass myParent { function parentFunc () { echo "Sortie Fonction Parente\n"; }}class myChild extends myParent {}myChild::parentFunc();runkit_class_emancipate('myChild');myChild::parentFunc();?>