top of page

PHP | echo and print

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

  
 
 
 

15 Comments


Hôm nọ mình tình cờ nghe mọi người nhắc tới Tải Go88, nên quyết định vào xem thử một chút. Lướt qua trang một lúc, mình chỉ muốn xem cách bố trí và giao diện ra sao. Ấn tượng đầu tiên là mọi thứ được sắp xếp khá hợp lý, các mục được phân chia rõ ràng, nên mình cảm thấy rất dễ theo dõi mà không bị rối mắt. Nhìn chung, chỉ cần một cái nhìn thoáng qua là đã có thể hình dung được nội dung trên đó.

Like

Hôm nọ mình tình cờ thấy mấy bài viết nói về việc đăng nhập dn88, nên quyết định click vào xem cho biết. Mặc dù không nghiên cứu quá sâu, nhưng mình đã lướt qua một chút để xem cách bố trí và nội dung. Thấy mọi thứ khá dễ nhìn, các phần được phân chia rõ ràng nên mình không bị rối mắt, cảm giác như vậy là đủ để hiểu sơ qua thông tin cơ bản rồi.

Like

Mình có lần lướt đọc mấy trao đổi trên mạng thì thấy nhắc tới Tải Go88, nên cũng tò mò mở ra xem thử cho biết. Mình không tìm hiểu sâu, chỉ xem qua trong thời gian ngắn để nhìn bố cục và cách sắp xếp nội dung tổng thể. Cảm giác là trình bày khá gọn, các mục rõ ràng nên đọc lướt cũng không bị rối, với mình như vậy là đủ để nắm thông tin cơ bản rồi.

Like

Mình vừa thấy một số cuộc trò chuyện trực tuyến đề cập đến 8k8.us.com và quyết định ghé thăm một chút. Mặc dù không tìm hiểu sâu, nhưng mình đã lướt qua giao diện và cách bố trí các phần chính. Cảm giác của mình là trang này khá gọn gàng và dễ dàng để theo dõi. Một cái nhìn nhanh như vậy đã giúp mình có cái nhìn tổng quát về nội dung trên 8k8.us.com.

Like

Hôm nọ, mình vô tình thấy có ai đó chia sẻ link https://uu88pro.com/ trong một cuộc trò chuyện trên mạng, nên cũng hơi hiếu kỳ mở ra xem cho biết. Mình chỉ lướt qua trong vài phút để quan sát cách trình bày và cấu trúc nội dung. Thấy bố cục khá rõ ràng, các phần được phân chia hợp lý nên đọc rất dễ hiểu, không bị rối mắt. Cuối cùng, mình cũng nhận ra mọi người đang bàn về uu88pro.com. Nội dung có vẻ liên quan đến các trò chơi trực tuyến thú vị.

Like

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