Tools, FAQ, Tutorials:
"new line" Character in Single-Quoted Strings in PHP
Can You Specify the "new line" Character in Single-Quoted Strings?
✍: FYIcenter.com
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.'; ?>
This script will print:
\n will not work in single quoted strings.
⇒ Special Characters in Double-Quoted Strings in PHP
⇐ Escape Sequences in Single-Quoted Strings in PHP
2016-10-13, ∼3666🔥, 0💬
Popular Posts:
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
What Is session_register() in PHP? session_register() is old function that registers global variable...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...