schedule.php 676 B

123456789101112131415161718192021222324
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Fanwe 方维商业系统
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: 云淡风轻(97139915@qq.com)
  8. // +----------------------------------------------------------------------
  9. //计划任务执行接口
  10. interface schedule {
  11. /**
  12. * 执行指定的计划任务,
  13. * 返回 返回 array("status"=>0/1, "attemp"=>0/1, "info"=>string);
  14. * @param unknown_type $data
  15. */
  16. function exec($data);
  17. }
  18. ?>