慕圣9569918
2018-05-19 17:12
<?php
$p = "PII";
define("PI",3.14);
define($P,3.14);
echo PI;
echo "<br />";
echo PII;
?>
是这样的哦,PII已经被定义过了呢,PI没有被定义过
define("PI", 3.14); define($p, 3.14);
第四行 $p小写
运行结果是:
PHP Notice: Undefined variable: P in index.php on line 4 PHP Notice: Use of undefined constant PII - assumed 'PII' in index.php on line 7 3.14 PII
PHP入门篇
455957 学习 · 6306 问题
相似问题