xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP 预定义常量 const 实例 - 自学教程(runoops.com)</title>
</head>
<body>
echo PHP_VERSION; // 输出 PHP 版本,例如 "7.4.29"
echo PHP_OS; // 输出操作系统,例如 "Linux"
echo PHP_INT_MAX; // 输出最大的整数值,例如 "9223372036854775807"
</body>
</html>