很簡單的功能,用到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 } ?>