Bonjour,
Voici un code PHP pour afficher la liste des fonctions installées sur un serveur.
Code PHP:
<?php
$tabext=get_loaded_extensions();
natcasesort($tabext);
foreach($tabext as $cle => $valeur)
{
echo "<h3> Extensions </h3>";
$fonct=get_extension_funcs($valeur);
sort($fonct);
for($i=0;$i<count($fonct); $i++){
echo $fonct[$i] . " /n";
echo "<hr />";
}
}
?>