9 lines
181 B
PHP
9 lines
181 B
PHP
<?php
|
|
|
|
if (! function_exists('epoch_now_timestamp')) {
|
|
function epoch_now_timestamp($multiplier = 1000)
|
|
{
|
|
return (int) round(microtime(true) * $multiplier);
|
|
}
|
|
}
|