InterviewSolution
| 1. |
What Are The Special Characters You 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: 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: |
|