时间:2021-07-01 10:21:17 帮助过:15人阅读
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 }
?>