导入 初始的系统文件

This commit is contained in:
panx
2024-07-26 17:51:40 +08:00
parent ca020c9387
commit 3cac992869
2073 changed files with 643898 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
/**
* Developer插件公共函数库
*/
if (!function_exists('format_time')) {
/*
* 格式化时间戳
*/
function format_time()
{
return date('Y-m-d H:i:s', time());
}
}