Accéder à une variable globale

Author:


Download

<html>
<head><title>Accès global</title></head>
<body>
<div>
<?php
    $artiste='Yannick noah';

    function monArtiste()
    {
      global $artiste;
      print $artist." chante mieux que les autres<br />";
    }
    monArtiste();
?>
</div>
</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *


5 − five =