Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的 var,它是const:
const
const TWITTER_CACHE_REFRESH = 1440;
如何在我声明它的同一个类中的方法中访问它?它所在的类已经被另一个类初始化。
使用以下语法
echo self::CONSTNAME;
在你的情况下:
echo self::TWITTER_CACHE_REFRESH;
如果您愿意,您也可以替换self为类名,但不建议您更改类名,然后您必须更改代码中对其名称的所有引用。
self
echo Classname::TWITTER_CACHE_REFRESH;