我正在努力学习特质。我使用了PHP手册中的示例,但它不起作用 - 为什么?
trait ezcReflectionReturnInfo {
function getReturnType() { /*1*/ }
function getReturnDescription() { /*2*/ }
}
class ezcReflectionMethod extends ReflectionMethod {
use ezcReflectionReturnInfo;
}
class ezcReflectionFunction extends ReflectionFunction {
use ezcReflectionReturnInfo;
}
我收到错误:
Parse error: syntax error, unexpected T_STRING in /path/index.php on line 23
答案 0 :(得分:4)