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, ∼4467🔥, 0💬
Popular Posts:
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
What is the "__init__()" class method? The "__init__()" class method is a special method that will b...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
How to build a PHP script to dump Azure AD 2.0 Authentication Response? If you are use the Azure-AD-...