Wednesday, September 3, 2025
HomeLanguagesWhat is the difference between echo, print, and print_r in PHP?

What is the difference between echo, print, and print_r in PHP?

echo: echo is not a function rather it is described as a language construct. It accepts an list of argument (multiple arguments can be passed) and returns no value or returns void. It cannot be used as a variable function in PHP. It is used to display the output of parameters that is passed to it. It display the outputs one or more strings separated by commas.

Example:




<?php
  
// PHP program to illustrate echo
  
// Declare variable and initialize it.
$x = "neveropen ";
$y = "Computer science portal";
  
// Display the value of $x
echo $x, $y;
?>


Output:

neveropen Computer science portal

print: It is not a real function. it is a language construct but always returns the value 1. So it can be used as an expression. Unlike echo, print accepts only one argument at a time. It cannot be used as a variable function in PHP. The print outputs only the strings. It is slow compared to that of echo.
Example:




<?php
  
// PHP program to illustrate echo
  
// Declare variable and initialize it.
$x = "neveropen";
  
// Display the value of $x
print $x;
?>


Output:

neveropen

print_r(): print_r() is a regular function. It outputs the detailed information about the parameter in a format with its type (of an array or an object), which can be easily understandable by humans. In this function the output get stored on the internal buffer when the return parameter is passed. If pass the return parameter to TRUE, print_r() would return the complete information rather than just print it. During walk-through this function helps in identifying any of the glitches while executing the program. It is more similar to the var_dump() function.
Example:




<?php
  
// PHP program to illustrate echo
  
// Declare an array
$arr = array('0' => "neveropen",
             '1' => "Computer", 
             '2' => "Science",
             '3' => "Portal");
  
// Display the value of $x
print_r($arr);
?>


Output:

Array
(
    [0] => neveropen
    [1] => Computer
    [2] => Science
    [3] => Portal
)

Example:




<?php
  
$a = "neveropen";
$b = array('0' => "Geeks", '1' => "for", '2' => "Geeks");
$c = 3.14;
$d = 7;
  
// Single argument
print "\n$a\n";
  
// Multiple argument
echo $c + $d . "\n";
  
// Return with internal output buffering
print_r($b);
?>


Output:

neveropen
10.14
Array
(
    [0] => Geeks
    [1] => for
    [2] => Geeks
)
RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6746 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS