Source : lesson_06_h_dynamic_call.php |
Résultat |
<?php $newfonction = "gras"; //on a mis le nom de la fonction dans une variable $newfonction ("Hello le monde"); //on s'en sert pour appeler la fonction print ("<br/>"); $newfonction = "souligne"; $newfonction ("Hello le monde"); print ("<br/>"); //---------------------------------- F O N C T I O N S ------------------- function gras ($txt) { print ("<b>$txt</b>"); } function souligne ($txt) { print ("<u>$txt</u>"); } ?>
|
Hello le monde Hello le monde
|