Tools, FAQ, Tutorials:
Special Characters in Double-Quoted Strings in PHP
What Are the Special Characters You Need to Escape in Double-Quoted Stings?
✍: FYIcenter.com
There are two special characters you need to escape in a double-quote string: the double quote (") and the back slash (\). Here is a PHP script example of double-quoted strings:
<?php echo "Hello world!"; echo "Tom said: \"Who's there?\""; echo "\\ represents an operator."; ?>
This script will print:
Hello world!Tom said: "Who's there?"\ represents an operator.
⇒ Escape Sequences in Double-Quoted Strings in PHP
⇐ "new line" Character in Single-Quoted Strings in PHP
2016-10-13, ∼2469🔥, 0💬
Popular Posts:
How to use the built-in "context" object in Policy expressions? The built-in "context" object can be...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
How to create a navigation file like navigation.xhtml for an EPUB 3.0 book? At least one navigation ...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...