Site Meter Web Dev Notes » Blog Archive » Echo vs Print - Which Should be Used?

Echo vs Print - Which Should be Used?

by Deceth

You will notice as soon as you start programming in PHP that you have two options when it comes to displaying text on the screen: Echo or Print. Both examples shown below will display exactly the same text on the screen in exactly the same way. So… which one should you use?

<?php
   print "Hello World!";
?>

<?php
   echo "Hello World!";
?>

There is one small difference between print and echo. With print you can return a true or false value which means you can use it as part of a more complex expression. Because the print function gives you this extra functionality which may be of use, I would suggest simply using print all the time.

Of course, because echo does not return a value, it can be argued that echo is faster than print. This is true, though the difference in execution time is so small that in practice it is negligible. In the past, it may have been possible to speed up a large PHP application by several milliseconds by converting all prints to echos, but with the speed of today’s computers I doubt there would be any useful performance improvement. If you need to improve the performance of your program, optimizing your algorithms will be way more beneficial than switching to echo.

At the end of the day, it’s really up to the preference of the programmer when it comes to choosing between Echo and Print. As I’ve mentioned, I’ve gone with only using Print because I feel that my code is more easy to understand and therefore of higher quality this way than if I began mixing both Echo and Print. If I just used echo, I may still need to use Print in some cases should I need to return a value, therefore I would inevitably find myself mixing both functions and confusing any new PHP programmers I share my code with! Also, the print command is more common in other programming languages and is more intuitive which are some other reasons I have decide to stick with just using Print.

Here is an example of print in action:

<html>
<head>
   <title>PHP Page with Print in Action</title>
</head>
<body>
<?php
   print "This text will be displayed!";
   print "<br>";
   print "The line above used HTML!";
   print "This \"is how we can use\" quotes";
?>
</body>
</html>

One Response to “Echo vs Print - Which Should be Used?”

  1. PHP Echo Vs Print Says:

    Hey, informative post. But when you mentioned that the difference is negligible on today’s computers, you were only partially correct.

    I’ve actually done an unofficial benchmark, and if you loop an ungodly amount of text long enough, you can get around a 20% difference :).

    Ok, ok. Not likely. But still, I stick to echo regardless.

Leave a Reply


About Web Dev Notes

Your one stop destination for anything and everything related to web development

Web Dev Notes Author(s)
    » Deceth

Blogging Flair

New Media, Web 2.0 Channel Posts

  • Podcasting Transcription
    A Guest Post from Tishia Lee of Tishia Saves Time: When I first started offering transcription services as part of my Virtual Assistant business, transcribing podcasts was not something I [...]
  • Don't Dabble - Make A Commitment
    If you want to get the best bang for your buck, plan on podcasting for the long haul. Podcasters who “test” things out with one or two podcasts and then give up may think that they've given [...]
  • A Question of Podcasting Frequency
    This follows up on yesterday's post about not dabbling in podcasting but rather to make a commitment. Podcasting on a schedule is important when building a community and an audience. Don’t have [...]
  • Do You Twitter About Your Podcast?
    Whenever I release a new episode of Work at Home Moms Talk Radio is pop the link up on my Twitter and invite my followers to come check it out. This has brought me several first time listeners which [...]
  • Looking for Podcast Outsourcing?
    I mentioned having my podcast audio's transcribed in my last post. In case you wonder - no, I do not transcribe them myself. (Shudder the thought - I did enough transcription to last a lifetime in [...]
  • Business Podcasting Benefit: Be An Industry Thought Leader
    I often ask people 'Why haven't you started your podcast yet?' and a common reply is 'I don't feel like I'm enough of an expert to cover the topic I'm interested in.' Enough of an expert? [...]
  • Business Podcasting Benefit: More Content
    Building a business on the web requires that you generate a lot of content. Content on your website draws traffic both through search engines (people searching for your content) and through links [...]
  • Business Podcasting Benefit: Deeper Relationships
    A website visitor is just a website visitor. You can't really say that you have a relationship with someone who has only visited your website can you? But when the web visitor subscribes to [...]
  • Business Podcasting Benefit: Increased Market Exposure
    When you consider how many millions of people are walking around with iPods and other Mp3 players you have to wonder, wouldn't it be awesome if they came looking for you? Well they do. Ipod [...]
  • D'ya Know Your Podcasting ABCs?
    I embarked on a fun little project this winter in which I have been working my way through the alphabet, looking for words for each letter that I could apply to the subject of podcasting. I've [...]

Hot Off The Press

  • Flip Mino
    If it is one thing you don't need when you have kids is more "things". You carry around a diaper bag, juice boxes, changes of clothes, a camera and for special occasions you bring out the [...]
  • Paris slams another report again. Yes, again!
    You read it right. If you think it’s quite odd that every now and then Paris Hilton just kept on denying issues thrown at her, then be prepared for another denial. Like somebody totally fed [...]
  • What's up for Paul Dano?
    I caught Little Miss Sunshine on cable TV early this week and wondered what's been going on with Paul Dano's career. He was touted as one of Eentertainment Weekly's successful people under 30 years [...]
  • Happy Live Show Day!
    Good Morning, Hamster Lovers! It's our first live show day! I'm so EXCITED! AGP has really stepped it up with this cast, and the two shows so far - I'm extremely pleased so far, and can only hope the [...]
  • Rihanna is stunning in yellow
    Not everybody could wear a yellow dress! That’s the sad fact I learned spending the whole day today looking for the perfect yellow dress. ‘Guess I really owe to be jealous to those who [...]
  • Testing, Testing...
    Hello all. Today I have decided to not only test out Skribit but to give you the chance to have a bit more say about the things you would like to see more of on this site. I'm going to leave this up [...]
  • Paris Hilton pregnancy rumors: Not Yet Over!
    When Paris Hilton went out with her boyfriend, Benji Madden with an alleged baby bump, everybody (at least for those who care) seems to have waited for a confirmation. However, the confirmation [...]
  • Rumer Willis needs a bra, badly!
    While I have nothing against those who feel more comfortable without a bra, I certainly think Rumer Willis case is different. Attending the Power of Paws launch party yesterday, Rumer shows [...]
  • Invalid food - or was that food for invalids?
    I'm still not well. I've finally taken a deep breath and said "I can't do all the work I want to do this week – so let me prioritise." All the rest of this week will be what I like to think [...]
  • Microsoft Copies Nintendo
    I really hate when a company tries to copy a novel and popular idea as a means of cashing it. It never works as well and usually is half assed and poorly supported. Case in point, the motion [...]