x
 
<!DOCTYPE html>
<html>
<body>
<?php
$cars=array("Volvo","BMW","Tesla"); 
echo "我喜欢 " . $cars[0] . "、" . $cars[1] . " 和 " . $cars[2] . "。";
?>
</body>
</html>