<?php
define('PI','3.14');
define('PII','3.14');
echo(PI);
echo'<br />';
echo(PII);
PI和PII要加双引号,3.14加不加无所谓,反正无论字符串或者浮点数都会输出出来3.14
3.14是浮点型数不需要用单引号