Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Why does PHP echo'd text lose it's formatting?

I got strange problem. Let's say I got code like this:

<?php

class Bar
{
    private $foo;
    function __construct ($foo)
    {
        $this->foo = $foo;
    }

    public function testFoo($obj)
    {
        echo $obj->foo . PHP_EOL;
    }
}

$obj = new Bar("obj");
$obj2 = new Bar("obj2");
$obj->testFoo($obj);
$obj->testFoo($obj2);

?>

And well instead of getting expected result which is:

obj
obj2

This is what I get:

obj obj2

It's just like PHP_EOL represents blank space. I also tried to use "\n" but this one works same. I'm using latest XAMPP.

share|improve this question

marked as duplicate by NikiC, ircmaxell, Gordon, edorian, ChrisF Nov 22 '11 at 22:14

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

If you are viewing this in your browser, it's because browsers interpret newlines in HTML as regular space characters.

In HTML you need to use <br> for forcing a line break.

share|improve this answer
Or you can send your output as plain text using header('Content: text/plain'); - depends on what you're doing. – BoltClock Nov 22 '11 at 16:42

Not the answer you're looking for? Browse other questions tagged or ask your own question.