“Ctrl+/”
“F11/ESC”
<?php
$txt1="Learn PHP";
$txt2="shouce.ren";
$cars=array("Volvo","BMW","Toyota");
print $txt1;
print "<br>";
print "Study PHP at $txt2";
print "My car is a {$cars[0]}";
?>