Possible Duplicate:
PHP closing tag
I have seen many PHP classes files which do not have a closing ?>
so instead of this:
<?php
class DataTypeLine extends DataType {
...
}
?>
they just have this:
<?php
class DataTypeLine extends DataType {
...
}
I also notice when I create a new PHP file in Eclipse Helios, it defaults to having only a starting <?php
tag but no ending tag ?>
.
What is the advantage of not having an ending ?>
tag?