Utilisation de var_dump() » pour afficher les informations sur le type d’une variable »

Author:
<?php
$welcom = "Bienvenur";
// Affiche: string(9) "Bienvenur"
var_dump( $welcom );
?>