Yogesh Chauhan's Blog

The Difference Between the echo and print Commands in PHP

in PHP on January 18, 2020

We have seen echo command used in number of different ways to print everything from PHP files on the server to the browser. Outputs might have been different. For example, you might have just printed simple texts or maybe string concatenation or some variables, maybe output in quotes using multiple lines or using heredoc.

In PHP, there are two ways to print. print and echo. But most of the time we just use echo and not print. Both of them are similar types of commands but still there is a bit difference (otherwise we won’t need two commands. right?)

The command print is a function-like construct that takes a single parameter and has a return value. The return value is always 1 by the way. The command echo is a pure PHP language construct.

Both of the commands are constructs so none of them requires parenthesis. 

The echo command will be somewhat faster then print in text output and the reason is obvious: it doesn’t set a return value.

The echo command can’t be used as a part of more complex expression because it isn’t implemented like a function. The print command can be used as a part of more complex expression.

Let’s look at the example below:


$var ? print "TRUE" : print "FALSE";

The statement prints whether the value is true or false using print. Something that we can not perform using echo. However there is a way to perform same king of operation using echo. For example, just use shorthand to write IF condition and use echo.

In the print example above, the question mark checks whether the value of $var is true. The colon just divides the outputs to be printed in either condition. If $var is TRUE then the left part of the colon will be printed and if it’s FALSE then the right part.

Summary

echo and print are more or less the same. They are both used to output data to the screen.

The differences are small:

echo has no return value while print has a return value of 1 so it can be used in expressions.

echo can take multiple parameters (although such usage is rare) while print can take one argument.

echo is marginally faster than print.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
What’s the difference between a Framework and a Library?Miscellaneous3 ways to pass a variable in url() function in SCSS (Sass)SCSSSolution for the error Commit failed – exit code 1 received in Desktop GithubMiscellaneousHow to create ‘share on LinkedIn’ link using just HTML?HTMLHow to import a CSS file using PHP code and not HTML code?PHPHow to create a simple digital clock using JavaScript?JavaScript