Wednesday, 24 April 2013

Whitespace | Practical PHP Programming


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.

No comments:

Post a Comment