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
Explore Other Related Tutorials and Programs
- C++ Program to find biggest of two numbers using Inline Functions
- C Program to reverse a given integer number using while loop using functions
- Java Program to find the area of a pentagon
- Python Program to find swap two numbers without temp variable (Addition and Subtraction Method)
- Lua Program to subtract two numbers