<!DOCTYPE html>
<html>
<body>

<?php
$txt1="学习 PHP";
$txt2="W3S.com.cn";
$cars=array("Volvo","BMW","SAAB");
echo $txt1;
echo "<br>";
echo "学习 PHP 在 $txt2";
echo "<br>";
echo "我的车是一辆 {$cars[0]}";
?>

</body>
</html>