Guest User

Untitled

a guest
Jul 23rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. --- b 2010-02-02 12:05:17.000000000 -0500
  2. +++ a 2010-02-02 12:05:00.000000000 -0500
  3. @@ -2,6 +2,10 @@
  4. $s = "";
  5. $m = "0123456789ABCDEFGHJKLMNPQRSTUVWXYZ_abcdefghijkmnopqrstuvwxyz";
  6. if ($n===undefined || $n===0) { return 0; }
  7. + if($n<0) {
  8. + $n = $n*-1;
  9. + $s .= '-';
  10. + }
  11. while ($n>0) {
  12. $d = $n % 60;
  13. $s = strcat($m[$d],$s);
Add Comment
Please, Sign In to add comment