Alternate PHP Syntax for View Files

If you do not utilize a templating engine to simplify output,you’ll be using pure PHP in yourView files. To minimize the PHP code in these files, and to make iteasier to identify the code blocks it is recommended that you use PHPsalternative syntax for control structures and short tag echo statements.If you are not familiar with this syntax, it allows you to eliminate thebraces from your code, and eliminate “echo” statements.

Alternative Echos

Normally to echo, or print out a variable you would do this:

  1. <?php echo $variable; ?>

With the alternative syntax you can instead do it this way:

  1. <?= $variable ?>

Alternative Control Structures

Controls structures, like if, for, foreach, and while can be written ina simplified format as well. Here is an example using foreach:

  1. <ul>
  2.  
  3. <?php foreach ($todo as $item) : ?>
  4.  
  5. <li><?= $item ?></li>
  6.  
  7. <?php endforeach ?>
  8.  
  9. </ul>

Notice that there are no braces. Instead, the end brace is replaced withendforeach. Each of the control structures listed above has a similarclosing syntax: endif, endfor, endforeach, and endwhile

Also notice that instead of using a semicolon after each structure(except the last one), there is a colon. This is important!

Here is another example, using if/elseif/else. Notice the colons:

  1. <?php if ($username === 'sally') : ?>
  2.  
  3. <h3>Hi Sally</h3>
  4.  
  5. <?php elseif ($username === 'joe') : ?>
  6.  
  7. <h3>Hi Joe</h3>
  8.  
  9. <?php else : ?>
  10.  
  11. <h3>Hi unknown user</h3>
  12.  
  13. <?php endif ?>