common.php 732 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 中闽 < 1464674022@qq.com >
  5. * Date: 2019/12/5
  6. * Time: 17:44
  7. */
  8. // +----------------------------------------------------------------------
  9. // 如果只需要给admin模块添加函数,在此文件中定义函数即可,系统会自动加载
  10. // +----------------------------------------------------------------------
  11. function addlog($operation_id = 0, $remark = '')
  12. {
  13. //兼容2021/05/24之前的旧版代码
  14. return true;
  15. }
  16. /**
  17. * 清除temp目录里的模板缓存
  18. * @param string $path
  19. * @return bool
  20. */
  21. function clear_temp_cache($path = TEMP_PATH)
  22. {
  23. if (array_map('unlink', glob($path . '*.php'))) {
  24. return true;
  25. } else {
  26. return false;
  27. }
  28. }