Echo vs. Print
- PHP echo and print both are PHP Statements
- Both are used to displaying the output in PHP.
What is echo
- The echo is a statement i.e used to display the output. it can be used with parentheses echo or without parentheses echo.
- echo can pass multiple strings separated as (,).
- echo does,t return any value.
- echo is faster than print.
- It can accept multiple expressions.
Echo Example->
<?php | |
$channel="semicolon"; | |
echo $channel; | |
echo "<br>" | |
Echo ($channel); | |
?> |
For Example (pass multiple argument)
<?php | |
$my = "youtube devopsschool"; | |
$channel = " channel"; | |
$created_on=" created on 3 Oct 2018"; | |
echo $my."".$channel."".$created_on; | |
?> |
Now we want to print all three variable values together. all variables names are define inside the echo statement separated by comm or dot(,or.) it will show the output.
What is Print
- It is also a statement which is used to display the output and used with the parentheses print() or without the parentheses print.
- It cannot accept multiple expressions.
- It is slower than echo as it return a value.
- It cannot pass multiple argument
- It always return the value 1.
Example-> now we want to print the name. we simply define $name inside print statement with or without parentheses.
It will show the output: “dharmu”.
<?php | |
$name = "dharmu"; | |
Print $name | |
or | |
Print($name); | |
?> |
For Example (pass multiple argument)
Declare three variable $name, $profile, $age and hold the value (“dharmu,”php developer”,25).
Now check whether it will allow executing multiple arguments.
Pass three variables inside the print statement separated by a comma. As we run this program it shows error.
It means multiple arguments are not allowed in print.
<?php | |
$name = "praba"; | |
$profile = "PHP Developer"; | |
$age = 25; | |
print $name,$profile,$age, "years old"; | |
?> |
Output: Parse error: syntax error
For Example (Check return type)
<?php | |
$name = "dharmu"; | |
$ret = print $name; | |
//To test it returns or not | |
echo $ret; | |
?> |
Output:
dharmu
In the above example
declare a variable $name hold value=”dharmu”.now we check the return type of print.
So (Print $name) is store in a variable ($ret).
it will show $name value with return type=1.
These other Difference Between echo and print in PHP




I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I am working at Cotocus. I blog tech insights at DevOps School, travel stories at Holiday Landmark, stock market tips at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at I reviewed , and SEO strategies at Wizbrand.
Please find my social handles as below;
Rajesh Kumar Personal Website
Rajesh Kumar at YOUTUBE
Rajesh Kumar at INSTAGRAM
Rajesh Kumar at X
Rajesh Kumar at FACEBOOK
Rajesh Kumar at LINKEDIN
Rajesh Kumar at PINTEREST
Rajesh Kumar at QUORA
Rajesh Kumar at WIZBRAND