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.

I am currently using the below code to echo a few different variables and 2 line breaks.

But what I would like to know is how can I echo all of the variables including line breaks into one line of code?

<?php

function findworld($var) {
    return strpos($var, "world");
}

$firstvar = "hello world";
$secondvar = findworld($firstvar);
$thirdvar = strlen($firstvar);

echo $firstvar;
echo "<br />";
echo $secondvar;
echo "<br />";
echo $thirdvar;
?>
share|improve this question

5 Answers

up vote 2 down vote accepted

the concat operator in php is "."

echo $firstvar . "<br />" .  $secondvar .  "<br />" . $thirdvar;

http://www.php.net/manual/en/language.operators.string.php

share|improve this answer

You can pass multiple parameters to echo, separated by a comma:

echo $firstvar, "<br />", $secondvar, "<br />", $thirdvar;

To avoid repeating the line break, you could also use implode:

$firstvar = "hello world";
$values = array($firstvar, 
                findworld($firstvar), 
                strlen($firstvar));

echo implode('<br />', $values);
share|improve this answer

Like others have said, but with speech marks in the all the correct places ;)

echo $firstvar.'<br />'.$secondvar.'<br />'.$thirdvar;
share|improve this answer

You don't need to concatenate at all with double quotes, you can just:

echo "$firstvar<br />$secondvar<br />$thirdvar";
share|improve this answer

You can use string concatenation:

echo $firstvar . "<br />" . $secondvar . "<br />" . $thirdvar;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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