• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP echo 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
$txt1="学习 PHP";
11
$txt2="RUNOOPS.COM";
12
$cars=array("Volvo","BMW","Toyota");
13
 
14
echo $txt1;
15
echo "<br>";
16
echo "在 $txt2 学习 PHP ";
17
echo "<br>";
18
echo "我车的品牌是 {$cars[0]}";
19
?>
20
​
21
</body>
22
​
23
</html>

© 2023 自学教程   runoops.com All Rights Reserved. 备案号:闽ICP备19010956号-1