【发布时间】:2014-06-23 11:48:04
【问题描述】:
为什么我不能达到这样的常量?我怎样才能到达它?
index.php:
namespace core;
const CONSTANT = 1;
include_once("lib/somefile.php");
/*------------------------*/
lib/somefile.php:
namespace core\lib;
echo CONSTANT; /*doesn't work */
echo core\CONSTANT; /* doesn't work either */
【问题讨论】:
-
echo \core\CONSTANT? -
那么这个问题就结束了?考虑删除它
-
@DamienPirsy 你说得对,我必须在开头添加一个 \,以明确 tis 来自全球。你会发这个吗?