Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<?php namespace myArea; function myValue(){ return __NAMESPACE__; } ?> <!DOCTYPE html> <html> <body> <h2>La constante __NAMESPACE__</h2> <p>Cette constante renvoie le nom de l'espace de noms :</p> <?php echo myValue(); ?> </body> </html>
La constante __NAMESPACE__
Cette constante renvoie le nom de l'espace de noms :
myArea