xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PHP 常量数组 实例 - 自学教程(runoops.com)</title>
</head>
<body>
<?php
const COLORS = [
"Red",
"Green",
"Blue"
];
echo COLORS[1]; // 输出 "Green"
?>
</body>
</html>