标签: php
如何根据同一个类中的另一个常量定义类常量?
class A{ const BASE_URL = 'http://example.org' const API_URL = BASE_URL . '/api'; // < error }
答案 0 :(得分:1)
您只能使用常量值初始化类常量。你过关了 一个必须在运行时和类一起评估的语句 常量是在早期编译时定义的。
因此。这是不可能的。 Check this incorrect bug report.