getMethod($methodName)->getDocComment(); } else { $doc = $reflectionClass->getDocComment(); } self::$annotations[$ident] = $self->parseAnnotation($doc); } return ($annotation) ? self::$annotations[$ident][$annotation] : self::$annotations[$ident]; } /** * 解析出注解 * @param $doc * @return array */ private function parseAnnotation($doc) { $result = []; preg_match_all('/@([a-zA-Z]+)\s(.*)/', $doc, $matches); if (!empty($matches)) { for ($i = 0; $i < count($matches[0]); $i++) $result[$matches[1][$i]] = trim($matches[2][$i]); } $matches = null; return $result; } }