";" statement in front of "PHP_EOL" for text formatting.">
The solution to the problem that php_eol does not have a newline: first open the corresponding PHP code file; then add the "echo "
";" statement in front of "PHP_EOL" for text formatting.Copy after login

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
Why PHP_EOL does not work or is invalid
PHP_EOL is a text line break, not an html line break.
Add echo "
";for text formatting,
The PHP_EOL at the end will work.
"; //字符串 //第1种表示 $date = '2020-02-10'; echo $date . PHP_EOL; //第2种表示 $date = "2020-02-10"; echo $date . PHP_EOL; //第3种表示---用于内容非常多的情况 $date = << Copy after login

[Recommended:PHP video tutorial]
The above is the detailed content of What should I do if php_eol does not have a new line?. For more information, please follow other related articles on the PHP Chinese website!