PHP检测函数所在的文件名

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

代码:

 

[php]   view plain copy
  1. // Filename: functions.php   
  2. <?php  
  3. function now() {  
  4.     return time();  
  5. }  
  6. ?>  

 

调用:

 

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

 

你可能感兴趣的:(PHP,函数)