PHP检测函数所在的文件
用到PHP中的反射机制,具体使用的是ReflectionFunction类,可以获取指定函数所在PHP脚本中的具体位置。
// Filename: functions.php
function now() {
return time();
}
?>调用函数。
// Filename: call_now.php
require 'functions.php';
Reflection::export(new ReflectionFunction('now'));
// Function [ function now ] { @@ H:wwwfunctions.php 2 - 4 }
?>
如果是想检查一个类 所在的文件名 怎么做 ,你知道么? 留言本告诉我,谢谢
用到PHP中的反射机制,具体使用的是ReflectionFunction类,可以获取指定函数所在PHP脚本中的具体位置。
// Filename: functions.php
function now() {
return time();
}
?>调用函数。
// Filename: call_now.php
require 'functions.php';
Reflection::export(new ReflectionFunction('now'));
// Function [ function now ] { @@ H:wwwfunctions.php 2 - 4 }
?>
如果是想检查一个类 所在的文件名 怎么做 ,你知道么? 留言本告诉我,谢谢
14朵
0个