php常量

<?php
/*
 * Created on 2011-11-11
 *
 * To change the template for this generated file go to
 * Window – Preferences – PHPeclipse – PHP – Code Templates
 */define(“MESSAGE”,”能看到一次”);
echo MESSAGE.”<BR>”;
//echo Message;
define(“COUNT”,”能看到二次”,true);
echo COUNT.”<br>”;
echo Count.”<br>”;
$name=”count”;
echo constant($name);echo (defined(“COUNT”)).”<br>”;
?>

发表评论

邮箱地址不会被公开。