Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
376 views
in Technique[技术] by (71.8m points)

string interpolation - PHP - how to create a newline character?

In PHP I am trying to create a newline character:

echo $clientid;
echo ' ';
echo $lastname;
echo ' ';
echo '
';

Afterwards I open the created file in Notepad and it writes the newline literally:

1 John Doe 1 John Doe 1 John Doe

I have tried many variations of the , but none work. Why isn't the newline turning into a newline?

Question&Answers:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Only double quoted strings interpret the escape sequences and as '0x0D' and '0x0A' respectively, so you want:

"
"

Single quoted strings, on the other hand, only know the escape sequences \ and '.

So unless you concatenate the single quoted string with a line break generated elsewhere (e. g., using double quoted string " " or using chr function chr(0x0D).chr(0x0A)), the only other way to have a line break within a single quoted string is to literally type it with your editor:

$s = 'some text before the line break
some text after';

Make sure to check your editor for its line break settings if you require some specific character sequence ( for example).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...