diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-07-26 15:51:29 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-07-26 15:51:29 +0000 |
| commit | 5805582b65e6ad0408956114c20d06a4bae6a3f1 (patch) | |
| tree | 9bc37b3b94606401251f2dfd19773b2904c96105 | |
| parent | a2940a363ba6c22bc1058f9520c29ed5949f345f (diff) | |
| download | boca-5805582b65e6ad0408956114c20d06a4bae6a3f1.tar.gz boca-5805582b65e6ad0408956114c20d06a4bae6a3f1.zip | |
bug fix
| -rwxr-xr-x | src/globals.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/globals.php b/src/globals.php index d41760d..023958e 100755 --- a/src/globals.php +++ b/src/globals.php @@ -263,7 +263,7 @@ function mymtime() { } function myunique() { list($usec, $sec) = explode(" ", microtime(true)); - return (int) (100*($usec + (((int)$sec) % 1000000) )); + return ((int)(100*$usec)) + 100*(((int)$sec) % 10000000); } //retorna data e hora atuais function now () { |