jxp2002 发表于 2017-3-3 09:22:39

php常量

<?php
define("CONSTANT", "Hello world.");
echo CONSTANT; // outputs "Hello world."
echo Constant; // outputs "Constant" and issues a notice.
?>

Hello world.Constant
页: [1]
查看完整版本: php常量