/** * Created by PhpStorm. * User: Administrator * Date: 2018\10\12 0012 * Time: 14:30 */ /** * class Dog 類注解 */ class Dog{ /** * class function say 方法注解 */ public function say() { echo "wang !"; } } $re = new ReflectionClass(new Dog()); var_dump($re->getDocComment()); var_dump($re->getMethod('say')->getDocComment());
注意的是注解格式 必須是 /** 開頭的
請參考 : https://www.phpdoc.org/
/* 和// 等注釋型的都獲取失敗.