xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP array() 遍历数组 实例 - 自学教程(runoops.com)</title>
</head>
<body>
$cars = ["Volvo", "BMW", "Toyota"];
$arrlength = count($cars);
for ($x = 0; $x < $arrlength; $x++) {
echo $cars[$x];
echo "<br>";
}
</body>
</html>