<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>PHP Constants</title>
</head>
<body>
<?php
echo "<pre>";
print_r(get_defined_constants(true));
echo "</pre>";
?>
</body>
</html>