BRE03

Correction de l’exercice 4 sur les variables


<?php

$data = 42.0;
echo "$data <br>";

$int = (int) $data;
echo "$int <br>";

$str = (string) $int;
echo "$str <br>";

?>