PHP Program to demonstrate String datatype

Program

<!DOCTYPE html>
<html>
<body>
<?php
$str = "Welcome to oodlescoop!";
echo $str;
echo "<br>";
var_dump($str);
?>
</body>
</html>

Output

Welcome to oodlescoop!
string(22) "Welcome to oodlescoop!"