PHP » PYTHON |
login |
register |
about
|
PYTHON Alternative syntax for control structures
(0)
Python replacement for PHP's Alternative syntax for control structures
[
edit
]
PHP Alternative syntax for control structuresPHP original manual for Alternative syntax for control structures [ show | php.net ]Alternative syntax for control structuresPHP offers an alternative syntax for some of its control structures; namely, if, while, for, foreach, and switch. In each case, the basic form of the alternate syntax is to change the opening brace to a colon (:) and the closing brace to endif;, endwhile;, endfor;, endforeach;, or endswitch;, respectively.
<?php if ($a == 5): ?>
In the above example, the HTML block "A is equal to 5" is nested within an if statement written in the alternative syntax. The HTML block would be displayed only if $a is equal to 5. The alternative syntax applies to else and elseif as well. The following is an if structure with elseif and else in the alternative format:
<?php
|
more
Recently updated
more
Most requested
more
Last requests
|