当前位置:Gxlcms > PHP教程 > PHP检测函数所在的文件名

PHP检测函数所在的文件名

时间:2021-07-01 10:21:17 帮助过:15人阅读

很简单的功能,用到PHP中的反射机制,具体使用的是ReflectionFunction类,可以获取指定函数所在PHP脚本中的具体位置。 创建引用脚本。

Php代码

// Filename: functions.php   
<?php  
function now() {  
    return time();  
}  
?>

调用函数。

Php代码

// Filename: call_now.php  
<?php  
require 'functions.php';  
   
Reflection::export(new ReflectionFunction('now'));  
// Function [ function now ] { @@ H:\www\functions.php 2 - 4 }  
?>

人气教程排行