top of page

PHP | echo and print

Writer's picture: Sachin PathakSachin Pathak

Updated: Dec 2, 2019



We have seen echo statement quite frequently in PHP codes of previous articles.It is the most basic way for displaying output in PHP.

However, there are two basic ways to get output in




PHP:-


1- echo

2- print


PHP echo statement

In PHP ‘echo’ statement is a language construct and never behaves like a function, hence no parenthesis required. The end of echo statement is identified by the semi-colon (‘;’). We can use ‘echo’ to output strings or variables. Below are some of the usage of echo statement in PHP:

1- Displaying Strings: We can simply use the keyword echo followed by the string to be displayed withing quotes. Below example shows how to display strings with PHP:


<?php

echo "Hello,This is a display string example!";

?>


Output:

Hello,This is a display string example!

2- Displaying Strings as multiple arguments: We can pass multiple string arguments to the echo statement instead of single string argument, separating them by comma (‘,’) operator. For example, if we have two strings say “Hello” and “World” then we can pass them as (“Hello”,”World”). Below example shows how to do this:

<?php

echo "Multiple ","argument ","string!";

?>

Output:

Multiple argument string!

3- Displaying Variables: Displaying variables with echo statement is also as easy as displaying normal strings. Below example shows different ways to display variables with the help of PHP echo statement:-

<?php

//defining the variables

$text = "Hello, World!";

$num1 = 10;

$num2 = 20;

//echoing the variables

echo $text."\n";

echo $num1."+".$num2."=";

echo $num1 + $num2; ?>

Output:

Hello, World!
10+20=30

PHP print statement


The PHP print statement is similar to the echo statement and can be used alternative to echo at many times.It is also language construct and so we may not use parenthesis : print or print(). The main difference between the print and echo statement is that print statement can have only one argument at a time and thus can print a single string. Also, print statement always returns a value 1. Like echo, print statement can also be used to print strings and variables. Below are some examples of using print statement in PHP:


1- Displaying String of Text:

We can display strings with print statement in the same way we did with echo statements. The only difference is we can not display multiple strings separated by comma(,) with a single print statement. Below example shows how to display strings with the help of PHP print statement:-


<?php

print "Hello, world!";

?>

Output:

Hello, world!

2- Displaying Variables:

Displaying variables with print statement is also same as that of echo statement. The example below shows how to display variables with the help of PHP print statement:-

<?php

//defining the variables

$text = "Hello, World!";

$num1 = 10;

$num2 = 20;

//echoing the variables

print $text."\n";

print $num1."+".$num2."=";

print $num1 + $num2;

?>

Output:

Hello, World!
10+20=30

  
2 views0 comments

ความคิดเห็น


REALCODE4YOU

Realcode4you is the one of the best website where you can get all computer science and mathematics related help, we are offering python project help, java project help, Machine learning project help, and other programming language help i.e., C, C++, Data Structure, PHP, ReactJs, NodeJs, React Native and also providing all databases related help.

Hire Us to get Instant help from realcode4you expert with an affordable price.

USEFUL LINKS

Discount

ADDRESS

Noida, Sector 63, India 201301

Follows Us!

  • Facebook
  • Twitter
  • Instagram
  • LinkedIn

OUR CLIENTS BELONGS TO

  • india
  • australia
  • canada
  • hong-kong
  • ireland
  • jordan
  • malaysia
  • new-zealand
  • oman
  • qatar
  • saudi-arabia
  • singapore
  • south-africa
  • uae
  • uk
  • usa

© 2023 IT Services provided by Realcode4you.com

bottom of page