TUTORIALS

PHP Program to demonstrate String datatype

Written By: Chaitra M
Created at: 28-June-2023 20:36:19
Modified at: 28-June-2023 20:36:39

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!"
There are no likes. Be the first one to like
Likes: 0
Comments: 0
184