search for in the  
<Basic syntaxComments>
Last updated: Thu, 19 May 2005

Instruction separation

As in C or Perl, PHP requires instructions to be separated with a semicolon at the end of each statement. The closing tag of a block of PHP code automatically implies a semicolon; you do not need to have a semicolon terminating the last line of a PHP block. The closing tag for the block will include the immediately trailing newline if one is present.

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

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

Note: The closing tag of a PHP block at the end of a file is optional, and in some cases not using it is helpful when using output buffering and include() or require().



User Contributed Notes
Instruction separation
There are no user contributed notes for this page.

<Basic syntaxComments>
 Last updated: Thu, 19 May 2005
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: The Server Pages
Last updated: Thu May 19 17:35:34 2005 CDT