Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

newline - PHP Linefeeds ( ) Not Working

For some reason I can't use to create a linefeed when outputting to a file with PHP. It just writes " " to the file. I've tried using "\n" as well, where it just writes " " (as expected). But I can't for the life of me figure out why adding to my strings isn't creating new lines. I've also tried but it just appends " " to the line in the file.

Example:

error_log('test
', 3, 'error.log');
error_log('test2
', 3, 'error.log');

Outputs:

test
test2

Using MAMP on OSX in case that matters (some sort of PHP config thing maybe?).

Any suggestions?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Use double quotes. "test " will work just fine (Or, use 'test' . PHP_EOL).

If the string is enclosed in double-quotes ("), PHP will interpret more escape sequences for special characters:

http://php.net/manual/en/language.types.string.php


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...