重構PHP 函數原始碼
問題:
問題:是否可以用程式擷取方式擷取PHP 函數的原始碼使用其名稱,類似於Java 的Reflection API?
答案:<code class="php">$functionReflection = new ReflectionFunction('myfunction'); $fileName = $functionReflection->getFileName(); $startLine = $functionReflection->getStartLine() - 1; // Adjust to exclude the opening function() block $endLine = $functionReflection->getEndLine(); $length = $endLine - $startLine; $source = file($fileName); $functionCode = implode("", array_slice($source, $startLine, $length)); echo $functionCode;</code>
以上是您能以程式設計方式檢索 PHP 函數原始碼嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!