简单类型 / 字符串

<?php

// \t Insert a tab.
// \n Insert a newline.
// \r Insert a carriage return.
// ' Insert a single quote.
// \" Insert a double quote.
// \\ Insert a backslash character.

$str = "She said \"Hello!\" to me.";
//str is "She said "Hello!" to me."

echo "\"", $str, "\"";