Files
swiftadmin/plugin/developer/function.php

17 lines
216 B
PHP
Raw Normal View History

2024-07-13 12:53:20 +08:00
<?php
/**
* Developer插件公共函数库
*/
if (!function_exists('format_time')) {
/*
* 格式化时间戳
*/
function format_time()
{
return date('Y-m-d H:i:s', time());
}
}