Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to use single quotes as much as possible and I've noticed that I can't use \n in single quotes. I know I can just enter a newline literally by pressing return, but that screws up the indentation of my code.

Is there some ASCII character or something that I can type that will produce newline when I'm using single quotes?

share|improve this question

closed as too localized by tereško, Mr. Alien, Ocramius, hakre, StaticVariable May 21 at 9:48

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

9 Answers

up vote 40 down vote accepted

No, because single-quotes even inhibit hex code replacement.

echo 'Hello, world!' . "\xA";
share|improve this answer
Ah ok.. I was hoping I wouldn't have to resort to that.. Thanks! – Matt Mar 28 '10 at 5:18
yessir. He answered it in under 10 min. I had to wait till then to accept, then I forgot about it haha. – Matt Mar 28 '10 at 7:46
Is there any alternative to this? I need to use it in a preg_replace that I cannot use double quotes in. – Alex Hadley Apr 18 '12 at 11:35
That's not the right reasoning. It's no because in PHP you can not express a new-line character in single quotes. And that's it. Reading the manual could have helped :) – hakre May 21 at 9:35
echo 'hollow world' . PHP_EOL;

Then it is OS independent too.

share|improve this answer

FYI it is possible to get newlines into strings without double quotes:

printf('Please%1$sgive%1$sme%1$snewlines%1$s', PHP_EOL);

Which may be useful If your irrational fear of double quotes knows no bounds. Though I fear this cure may be worse than the disease.

share|improve this answer
It's not a fear.. you just get better performance when you use single quotes, so I try to use them more often then not.. but yah, this isn't really a great solution for this problem, its more trouble than its worth. Thanks. – Matt Mar 31 '10 at 13:03
I haven't tested it but I would bet that using double quotes is faster than using printf or string catenation in general. – Mikko Rantalainen May 8 at 6:10

If you are echoing to a browser, you can use <br/> with your statement:

echo 'Will print a newline<br/>';
echo 'But this wont!';
share|improve this answer
1  
Unfortunately its more for terminal purposes.. thanks for your response though. – Matt Mar 28 '10 at 5:19
Not a problem, good luck. – Anthony Forloney Mar 28 '10 at 5:20
perrrrrrfect!!! – RubberDuck Nov 18 '12 at 22:12

There IS a difference on using single VS double quotes in PHP

e.g: 1. echo '$var\n'; 2. echo "$var\n";

  • in 1, PHP will print literally: $var\n
  • in 2, PHP will have to search the location in memory for $var, and return the value in that location, also, it will have to parse the \n as a new line character and print that result

We're in the range of millionths of a second, but there IS a difference in performance. I would recommend you to use single quotes whenever possible, even knowing you won't be able to perceive this performance increase. But I'm a paranoid developer when it comes to performance.

share|improve this answer
I applaude you for trying to search the best way of doing this instead of using the double quotes solution A.K.A The lazy-developer-solution. – linuxdev Oct 9 '11 at 0:57
The best way i know for doing what you want: echo 'foo', "\n"; – linuxdev Oct 9 '11 at 0:59

You may want to consider using <<<

e.g.

<<<VARIABLE
this is some
random text
that I'm typing 
here and I will end it with the 
same word I started it with
VARIABLE

More info at: http://php.net/manual/en/language.types.string.php

Btw - Some Coding environments don't know how to handle the above syntax.

share|improve this answer
1  
Ah yes... but I still HATE the fact that VARIABLE at the end breaks all indentation in your code... I have ran into so many (stupid) errors using HEREDOC syntax – Matt Mar 28 '10 at 7:47

No, according to documentation, PHP recognize no special symbol in single quotes. And there is no single reason to use single quotes as much as possible

share|improve this answer
There is a slight performance increase to using single quotes. Also, it seems like a good practice to explicitly define when you want variables to be replaced. – Jackson Miller Mar 28 '10 at 5:42
3  
@Jackson there is no performance increase. By any means. Forget these childish rumors. And no, do talk not of variables, but of special sequences. If you want any sequence, a variable or a newline to be expanded - use double quotes, on it's purpose. And OP's refusing to use it on it's purpose is nonsense. – Your Common Sense Mar 28 '10 at 6:03

The only escape sequence you can use in single quotes is for the single quote itself.

$foo = 'That\'s great';

The only way you could insert a new line into a string created with single quotes is to insert a literal newline

$bar = 'That\'s
cheating';
share|improve this answer

You can not specify the "new line" character in a single-quoted string. If you don't believe, try this script:

<?php 
echo '\n will not work in single quoted strings.'; 
?>
share|improve this answer

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