<?php // Création d'une instance de la classe ReflectionProperty $ext = new ReflectionExtension('standard');
// Affichage d'informations basiques printf( "Nom : %s\n". "Version : %s\n". "Fonctions : [%d] %s\n". "Entrées INI : [%d] %s\n" . "Classes : [%d] %s\n", $ext->getName(), $ext->getVersion() ? $ext->getVersion() : 'NO_VERSION', sizeof($ext->getFunctions()), var_export($ext->getFunctions(), 1),
sizeof($ext->getConstants()), var_export($ext->getConstants(), 1),
sizeof($ext->getINIEntries()), var_export($ext->getINIEntries(), 1),
sizeof($ext->getClassNames()), var_export($ext->getClassNames(), 1) ); ?>
|