App下载

demo_constant2 在线工具

demo_constant2 在线工具

<?php
// define a case-insensitive constant
define("GREETING", "Welcome to w3cschool.cn!", true);
echo GREETING;
echo "<br />";
// will also output the value of the constant
echo greeting;
?>
运行结果