Whitespace

Spaces, tabs, and new lines in between statements have no effect on how the code is executed. For example, this next script is the same as the previous script, even though it is laid out quite different:

<?php
    $name = "Paul"; print "Your name is $name\n";
    $name2 = $name; $age = 20;



    print "Your name is $name2, and your age is $age\n";


    print 'Goodbye, $name!\n';
?>

It is generally recommended that you use whitespace to separate your code into clear blocks, so that it can almost be understood simply by visually inspecting the layout.

 

Want to learn PHP 7?

Hacking with PHP has been fully updated for PHP 7, and is now available as a downloadable PDF. Get over 1200 pages of hands-on PHP learning today!

If this was helpful, please take a moment to tell others about Hacking with PHP by tweeting about it!

Next chapter: Escape sequences >>

Previous chapter: How PHP is written

Jump to:

 

Home: Table of Contents

Copyright ©2015 Paul Hudson. Follow me: @twostraws.