Answers

Question and Answer:

  Home  PHP

⟩ What Are the Special Characters You Need to Escape in Double-Quoted Stings?

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.

 217 views

More Questions for you: