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 } ?>
