Документ взят из кэша поисковой машины. Адрес оригинального документа : http://oit.cmc.msu.ru/php/language.basic-syntax.instruction-separation.html
Дата изменения: Sun Feb 3 22:33:20 2002
Дата индексирования: Mon Oct 1 22:25:10 2012
Кодировка:
Instruction separation

Instruction separation

Instructions are separated the same as in C or Perl - terminate each statement with a semicolon.

The closing tag (?>) also implies the end of the statement, so the following are equivalent:

<?php
    echo "This is a test";
?>

<?php echo "This is a test" ?>