PHP Programing language

adplus-dvertising
What is the mean for Echo Power
Previous Home Next

In any other programming if we want to print some statement then using print function in this programming, php also using print function, but another function is using for php is Echo, the Echo is using to print the statement for any program. Basically it's must powerfull function between print function.

<?php
print("hello php");
?>

And the echo based :

<?php
echo("hello php");
?>

Output: hello php

What is the main difference for print and Echo:

The print and echo are work is same but the difference is in speed and parameter.

Speed : Echo is more faster than print.

Parameter : Echo allows more than one parameter whereas print does not, e.g.:

<?php
print "Hello","php";
?>

It will generate error, whereas:

In Echo:

<?php
echo "Hello","php",1,2,3;
?>

Output:

Hello,php,1,2,3,
Previous Home Next