我这样写代码为什么会出现这个提示呢?
代码:<?php
$p = "PII";
$PIII=13;
$int_p=12;
define("PI",3.14);
define($p,3.14);
echo PI;
echo "<br />";
echo PII;
unset ($PIII);
var_dump($PIII);
var_dump($int_p);
echo PIII;
?>
结果提示:3.14
3.14
Notice: Undefined variable: PIII in /54/804/DZXT/index.php on line 11
NULL
int(12)
Notice: Use of undefined constant PIII - assumed 'PIII' in /54/804/DZXT/index.php on line 13
PIII