<?php
// 定义对大小写敏感的常量
define("GREETING", "Welcome to W3xue.com!");
echo GREETING;
echo "\n";
// 不会输出常量的值
echo greeting;
?>