<?php define("a",1); define("b",2); $p = "a"; $d = "b"; $c = $p + $d; echo $c; ?>
不要加引号
<?php
define("a",1);
define("b",2);
$p = a;
$d = b;
$c = $p + $d;
echo $c;
?>
自定义的变量,使用的时候不要加引号