php生成指定位数(13位)的时间戳 博客分类: php PHP13位时间戳13位时间戳
程序员文章站
2024-03-16 19:54:58
...
/** * * 返回一定位数的时间戳,多少位由参数决定 * * @author 陈博 * @param type 多少位的时间戳 * @return 时间戳 */ private function getTimestamp($digits = false) { $digits = $digits > 10 ? $digits : 10; $digits = $digits - 10; if ((!$digits) || ($digits == 10)) { return time(); } else { return number_format(microtime(true),$digits,'',''); } }
推荐阅读
-
java时间戳和PHP(mysql)时间戳 的转换问题 博客分类: 时间戳 时间戳
-
php生成指定位数(13位)的时间戳 博客分类: php PHP13位时间戳13位时间戳
-
java获取某个点的时间戳 博客分类: java/guava/python/php/ruby/R/scala/groovy 时间戳
-
获取昨天,今天,明天的时间 博客分类: PHP strtotime时间戳
-
PHP 返回13位时间戳的实现代码,php13位_PHP教程
-
PHP 返回13位时间戳的实现代码,php13位
-
PHP 返回13位时间戳的实现代码,php13位
-
php生成指定位数(13位)的时间戳
-
php生成指定位数(13位)的时间戳