我正在尝试找到一种最佳方法来获取文件中的所有私有、公共、静态、受保护的方法......最好的方法是什么。目前,当我执行 file_get_contents 时,它会转储整个文件,但我需要某种正则表达式,它只会给我方法
$filecontent = file_get_contents($fn->getPath()."/".$fn->getFilename());
我不确定我是否可以使用这个
preg_match("/private function | protected function | public function | public static function/") etc etc
如果有更好的方法我也想知道