PHP Developer Question:
Download Questions PDF

Which special characters need to escape in Double-Quoted Stings?

Answer:

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.

Download PHP Developer Interview Questions And Answers PDF

Previous QuestionNext Question
How to specify the "new line" character in Single-Quoted Strings?Tell me how many escape sequences are recognized in Double-Quoted Strings in PHP?