Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-perform-different-kind-of-PHP-string-operations-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php 
$x = "Hello world!";
$y = 'Hello world!';

echo $x;
echo "<br>"; 
echo $y;
?>

</body>
</html>

Output :

"; echo $y; ?>