A string can be any text enclosed in quotes, using either single or double quotes.
$x = "Hello world!";$y = 'Hello world!';
var_dump($x);echo "<br>";var_dump($y);