I just figured this out.
It all depends on what is AFTER the last ?> tag.

If I do not have extra line feeds they are not printed.

Wow...

thanks,

-Andres


Andres Gonzalez wrote:
Hi,

I want to learn PHP so I started using it for all of my general purpose scripts. The general format of my scripts are like this:

#!/usr/bin/php
<?php

.....bla bla bla  PHP code

?>

When I run my scripts and I have an echo (or print) at the end of the script to print out the results of the script, I get an extra line feed printed out. It seems that I can use this:

echo " bla bla bla with no terminating line feed";

and I will not get a line feed. But when I use the echo at the end of the script I get a terminating line feed. Is this correct or am I misinterpreting this?

Does echo and print always terminate the string with a \n ?
The function manual does not seem to mention anything about this.

thanks,

-Andres




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to