답변:
PHP 자체에서도이 작업을 수행 할 수 있습니다.
$reflFunc = new ReflectionFunction('function_name');
print $reflFunc->getFileName() . ':' . $reflFunc->getStartLine();
$reflFunc = new ReflectionMethod($this, 'method_name');
"설명 된"이란 "정의 된"을 의미한다고 가정합니다. 이를 위해 이상적으로는이를 수행 할 수있는 적절한 IDE가 필요합니다.
다음 은 특정 문자열에 대해 전체 프로젝트 파일 을 스캔 하고 파일이있는 파일과 기본 PHP 만 사용하여 시작하는 문자 위치를 알려주 는 기본 함수입니다 . 이것이 누군가에게 도움이되기를 바랍니다 ...
<?php
$find="somefunction()";
echo findString('./ProjectFolderOrPath/',$find);
function findString($path,$find){
$return='';
ob_start();
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
if(is_dir($path.'/'.$file)){
$sub=findString($path.'/'.$file,$find);
if(isset($sub)){
echo $sub.PHP_EOL;
}
}else{
$ext=substr(strtolower($file),-3);
if($ext=='php'){
$filesource=file_get_contents($path.'/'.$file);
$pos = strpos($filesource, $find);
if ($pos === false) {
continue;
} else {
echo "The string '$find' was found in the file '$path/$file and exists at position $pos<br />";
}
}else{
continue;
}
}
}
}
closedir($handle);
}
$return = ob_get_contents();
ob_end_clean();
return $return;
}
?>
나는 Tom의 솔루션을 좋아하기 때문에 ReflectionFunction 과 약간 더 많은 트릭을 공유 할 수 있다고 생각 했습니다 (모든 PHP 5에서 작동해야 함).
한 줄로 파일 이름을 인쇄합니다.
print (new ReflectionFunction("foo"))->getFileName();
내부 함수 (예 : _ ) 의 위치는 표시되지 않지만 여전히 아래와 같이 API를 인쇄 할 수 있습니다.
함수의 정의와 매개 변수를 인쇄하려면 :
print new ReflectionFunction("foo");
예:
$ php -r 'print new ReflectionFunction("_");'
Function [ <internal:gettext> function _ ] {
- Parameters [1] {
Parameter #0 [ <required> $msgid ]
}
}
$reflFunc->isInternal() === TRUE
의미-> getFileName () 및-> getStartLine ()은 FALSE를 반환합니다.