<html>
<head>
<title>Tester le type d'une variable</title>
</head>
<body>
<?php
$testing = 5;
print gettype( $testing ); print "<br>";
$testing = "five";
print gettype( $testing ); print("<br>");
$testing = 5.0;
print gettype( $testing ); print("<br>");
$testing = true;
print gettype( $testing ); print "<br>";
?>
</body>
</html> |